[
  {
    "path": ".github/CODE_OF_CONDUCT.md",
    "content": "# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nIn the interest of fostering an open and welcoming environment, we as\ncontributors and maintainers pledge to making participation in our project and\nour community a harassment-free experience for everyone, regardless of age, body\nsize, disability, ethnicity, sex characteristics, gender identity and expression,\nlevel of experience, education, socio-economic status, nationality, personal\nappearance, race, religion, or sexual identity and orientation.\n\n## Our Standards\n\nExamples of behavior that contributes to creating a positive environment\ninclude:\n\n* Using welcoming and inclusive language\n* Being respectful of differing viewpoints and experiences\n* Gracefully accepting constructive criticism\n* Focusing on what is best for the community\n* Showing empathy towards other community members\n\nExamples of unacceptable behavior by participants include:\n\n* The use of sexualized language or imagery and unwelcome sexual attention or\n  advances\n* Trolling, insulting/derogatory comments, and personal or political attacks\n* Public or private harassment\n* Publishing others' private information, such as a physical or electronic\n  address, without explicit permission\n* Other conduct which could reasonably be considered inappropriate in a\n  professional setting\n\n## Our Responsibilities\n\nProject maintainers are responsible for clarifying the standards of acceptable\nbehavior and are expected to take appropriate and fair corrective action in\nresponse to any instances of unacceptable behavior.\n\nProject maintainers have the right and responsibility to remove, edit, or\nreject comments, commits, code, wiki edits, issues, and other contributions\nthat are not aligned to this Code of Conduct, or to ban temporarily or\npermanently any contributor for other behaviors that they deem inappropriate,\nthreatening, offensive, or harmful.\n\n## Scope\n\nThis Code of Conduct applies both within project spaces and in public spaces\nwhen an individual is representing the project or its community. Examples of\nrepresenting a project or community include using an official project e-mail\naddress, posting via an official social media account, or acting as an appointed\nrepresentative at an online or offline event. Representation of a project may be\nfurther defined and clarified by project maintainers.\n\n## Enforcement\n\nInstances of abusive, harassing, or otherwise unacceptable behavior may be\nreported by opening an issue or by contacting the project team at gspread-conduct@googlegroups.com.\nAll complaints will be reviewed and investigated and will result in a response that\nis deemed necessary and appropriate to the circumstances. The project team is\nobligated to maintain confidentiality with regard to the reporter of an incident.\nFurther details of specific enforcement policies may be posted separately.\n\nProject maintainers who do not follow or enforce the Code of Conduct in good\nfaith may face temporary or permanent repercussions as determined by other\nmembers of the project's leadership.\n\n## Attribution\n\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,\navailable at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html\n\n[homepage]: https://www.contributor-covenant.org\n"
  },
  {
    "path": ".github/CONTRIBUTING.md",
    "content": "# Contributing Guide\n\n- Check the [GitHub Issues](https://github.com/burnash/gspread/issues) for open issues that need attention.\n- Follow the [How to submit a contribution](https://opensource.guide/how-to-contribute/#how-to-submit-a-contribution) Guide.\n\n- Make sure unit tests pass. Please read how to run unit tests [below](#run-tests-offline).\n\n- If you are fixing a bug:\n  - If you are resolving an existing issue, reference the issue ID in a commit message `(e.g., fixed #XXXX)`.\n  - If the issue has not been reported, please add a detailed description of the bug in the Pull Request (PR).\n  - Please add a regression test case to check the bug is fixed.\n\n- If you are adding a new feature:\n  - Please open a suggestion issue first.\n  - Provide a convincing reason to add this feature and have it greenlighted before working on it.\n  - Add tests to cover the functionality.\n\n- Please follow [Style Guide for Python Code](https://www.python.org/dev/peps/pep-0008/).\n\n## Tests\n\nTo run tests, add your credentials to `tests/creds.json` and run\n\n```bash\nGS_CREDS_FILENAME=\"tests/creds.json\" GS_RECORD_MODE=\"all\" tox -e py -- -k \"<specific test to run>\"\n```\n\nFor more information on tests, see below.\n\n## CI checks\n\nIf 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.\n\nUse [format](#format) to format your code before submitting a PR. Not doing so may cause [lint](#lint) to fail.\n\n## Install dependencies\n\n```bash\npip install tox\n```\n\n## Run tests (offline)\n\nIf 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.\n\nThis will use the currently recorded HTTP requests + responses. It does not make any HTTP calls, and does not require an active internet connection.\n\n```bash\ntox -e py\n```\n\n### Run a specific test\n\n```bash\ntox -e py -- -k TEST_NAME\n```\n\nThe 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`.\n\n```bash\npython -m venv env\nsource /env/bin/activate\npip install test-requirements.txt\npytest -k TEST_NAME\n```\n\n## Format\n\n```bash\ntox -e format\n```\n\n## Lint\n\n```bash\ntox -e lint\n```\n\n## Render Documentation\n\nThe 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/).\n\n```bash\ntox -e doc\n```\n\nThe rendered documentation is placed into `docs/build/html`. `index.html` is an entry point.\n\n## Run tests (online)\n\ngspread uses [vcrpy](https://github.com/kevin1024/vcrpy) to record and replay HTTP interactions with Sheets API.\n\n### `GS_CREDS_FILENAME` environment variable\n\nYou must provide service account credentials using the `GS_CREDS_FILENAME` environment variable in order to make HTTP requests to the Sheets API.\n\n[Obtain service account credentials from Google Developers Console](https://docs.gspread.org/en/latest/oauth2.html#for-bots-using-service-account).\n\n### `GS_RECORD_MODE` environment variable\n\nYou 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:\n\n- `all` - record all HTTP requests, overwriting existing ones\n- `new_episodes` - record new HTTP requests and replay existing ones\n- `none` - replay existing HTTP requests only\n\nIn the following cases, you must record new HTTP requests:\n\n- a new test is added\n- an existing test is updated and does a new HTTP request\n- gspread is updated and does a new HTTP request\n\n### Run test, capturing *all* HTTP requests\n\nIn 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.\n\n```bash\nGS_CREDS_FILENAME=<./YOUR_CREDS.json> GS_RECORD_MODE=all tox -e py\n```\n\n### Run test, capturing *only new* HTTP requests\n\nTo record new HTTP requests:\n\n1. Remove the file holding the recorded HTTP requests of the test(s).\n  e.g.,\n     1. for the file `tests/cell_test.py`:\n     2. for the test `test_a1_value`\n     3. remove the file `tests/cassettes/CellTest.test_a1_value.json`\n1. Run the tests with `GS_RECORD_MODE=new_episodes`.\n\n```bash\nGS_CREDS_FILENAME=<./YOUR_CREDS.json> GS_RECORD_MODE=new_episodes tox -e py\n```\n\nThis will mostly result in a lot of updated files in `tests/cassettes/`. Don't forget to add them in your PR.\nPlease add them in a dedicated commit, in order to make the review process easier.\n\nAfterwards, remember to [run the tests in offline mode](#run-tests-offline) to make sure you have recorded everything correctly.\n\n## Release\n\nOld release notes are [here](https://gist.github.com/burnash/335f977a74b8bfdc7968).\n\nNew release system:\n\n- Update version number in [`gspread/__init__.py`](../gspread/__init__.py).\n- Get changelog from drafting a new [GitHub release](https://github.com/burnash/gspread/releases/new) (do not publish, instead cancel.)\n- Add changelog to [`HISTORY.rst`](../HISTORY.rst).\n- Commit the changes as `Release vX.Y.Z` (do not push yet.)\n- Run `tox -e lint,py,build,doc` to check build/etc.\n- Push the commit. Wait for the CI to pass.\n- Add a tag `vX.Y.Z` to the commit locally. This will trigger a new release on PyPi, and make a release on GitHub.\n- View the release on [GitHub](https://github.com/burnash/gspread/releases) and [PyPi](https://pypi.org/project/gspread/)!\n- Sync or add the latest version to the [Gspread ReadTheDocs](https://app.readthedocs.org/projects/gspread/)\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "content": "---\nname: Bug report\nabout: Create a report to help us improve\ntitle: ''\nlabels: ''\nassignees: ''\n\n---\n\n**Important**: Please do not post usage questions here. \nTo get a quick response, please ask a question on Stack Overflow using `gspread` tag.\nSee existing questions: https://stackoverflow.com/questions/tagged/gspread\n\n---\n\n**Describe the bug**\nA clear and concise description of what the bug is.\n\n**To Reproduce**\nSteps to reproduce the behavior:\n1. \n2. \n3. \n\n**Expected behavior**\nA clear and concise description of what you expected to happen.\n\n**Code example***\nIf applicable, provide a code example to help explain your problem.\n\n**Screenshots**\nIf applicable, add screenshots to help explain your problem.\n\n**Environment info:**\n- Operating System [e.g. Linux, Windows, macOS]:\n- Python version\n- gspread version\n\n**Stack trace or other output that would be helpful**\n\n**Additional context**\nAdd any other context about the problem here.\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/config.yml",
    "content": "blank_issues_enabled: true\ncontact_links:\n    - name: Questions and Help\n      url: http://stackoverflow.com/questions/tagged/gspread\n      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.\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.md",
    "content": "---\nname: Feature request\nabout: Suggest an idea for this project\ntitle: ''\nlabels: ''\nassignees: ''\n\n---\n\n**Is your feature request related to a problem? Please describe.**\nA clear and concise description of what the problem is. Ex. I'm always frustrated when [...]\n\n**Describe the solution you'd like**\nA clear and concise description of what you want to happen.\n\n**Describe alternatives you've considered**\nA clear and concise description of any alternative solutions or features you've considered.\n\n**Additional context**\nAdd any other context or screenshots about the feature request here.\n"
  },
  {
    "path": ".github/dependabot.yaml",
    "content": "version: 2\nupdates:\n  - package-ecosystem: github-actions\n    directory: /\n    schedule:\n      interval: weekly\n\n  - package-ecosystem: pip\n    directory: /\n    schedule:\n      interval: weekly\n"
  },
  {
    "path": ".github/workflows/main.yaml",
    "content": "name: lint_python\non:\n  push:\n    branches:\n      - \"**\" # run all branches\n    tags-ignore:\n      - \"*\" # ignore all tags, release.yaml will trigger the CI\n  pull_request: # run on all pull requests\n\nconcurrency:\n  cancel-in-progress: true\n  group: group-${{ github.ref_name }}\n\njobs:\n  lint_python:\n    runs-on: ubuntu-latest\n    strategy:\n      fail-fast: false\n      matrix:\n        python: [\"3.8\", \"3.9\", \"3.10\", \"3.11\", \"3.x\"]\n    steps:\n      - uses: actions/checkout@v4\n      - uses: actions/setup-python@v5\n        with:\n          python-version: ${{ matrix.python }}\n      - run: pip install -U pip\n      - run: pip install -U bandit pyupgrade pip-audit tox setuptools\n      - run: bandit --recursive --skip B105,B110,B311,B605,B607 --exclude ./.tox .\n      - run: tox -e lint\n      - run: tox -e py\n      - run: shopt -s globstar && pyupgrade --py3-only **/*.py # --py36-plus\n      - 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\n      - run: tox -e build\n      - run: tox -e doc\n"
  },
  {
    "path": ".github/workflows/release.yaml",
    "content": "name: Releases\n\non:\n  push:\n    tags:\n    - 'v*'\n\njobs:\n\n  release:\n    runs-on: ubuntu-latest\n    permissions:\n      contents: write\n    steps:\n    - name: Checkout\n      uses: actions/checkout@v4\n    - name: Setup python\n      uses: actions/setup-python@v5\n      with:\n        python-version: \"3.9\"\n    - name: Setup tox\n      run: pip install tox\n    - name: Run linter\n      run: tox -e lint\n    - name: Run tests\n      run: tox -e py\n    - name: Build package\n      run: tox -e build\n    - name: Create release\n      uses: ncipollo/release-action@v1\n      with:\n        artifacts: dist/gspread-*\n        token: ${{ secrets.GH_TOKEN }}\n        generateReleaseNotes: True\n        artifactErrorsFailBuild: True\n    - name: Publish to TestPyPi\n      uses: pypa/gh-action-pypi-publish@release/v1\n      with:\n        user: __token__\n        password: ${{ secrets.TEST_PYPI_API_TOKEN }}\n        repository-url: https://test.pypi.org/legacy/\n        verbose: true\n    - name: Publish to PyPi\n      uses: pypa/gh-action-pypi-publish@release/v1\n      with:\n        user: __token__\n        password: ${{ secrets.PYPI_API_TOKEN }}\n"
  },
  {
    "path": ".gitignore",
    "content": "# vscode\n.vscode/\n\n# python\n**/__pycache__/\n\n# secrets\ntests/creds.json\n\n# virtualenv\nenv/\n\n# tox\n.tox/\n\n# build\ngspread.egg-info/\ndist/\ndocs/build/\n"
  },
  {
    "path": ".readthedocs.yaml",
    "content": "# .readthedocs.yaml\n# Read the Docs configuration file\n# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details\n\n# Required\nversion: 2\n\n# Set the version of Python and other tools you might need\nbuild:\n  os: ubuntu-22.04\n  tools:\n    python: \"3.11\"\n\n# Build documentation in the docs/ directory with Sphinx\nsphinx:\n  fail_on_warning: true\n  configuration: docs/conf.py\n\n# We recommend specifying your dependencies to enable reproducible builds:\n# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html\npython:\n  install:\n    - requirements: docs/requirements.txt\n    - method: pip\n      path: ./\n"
  },
  {
    "path": "HISTORY.rst",
    "content": "Release History\n===============\n\n6.2.1 (2025-05-14)\n------------------\n\n* Fix public API auth snippet by @Jayy001 in https://github.com/burnash/gspread/pull/1545\n* Clarify the first step: authentication by @hraftery in https://github.com/burnash/gspread/pull/1546\n* Fix typo in community.rst by @s2t2 in https://github.com/burnash/gspread/pull/1547\n* rearrange flow to remove reference to `creds` by @alifeee in https://github.com/burnash/gspread/pull/1525\n* switch safety for pip-audit by @alifeee in https://github.com/burnash/gspread/pull/1551\n* Include the duplicate column names in error message by @NickCrews in https://github.com/burnash/gspread/pull/1548\n\n6.2.0 (2025-02-27)\n------------------\n\n* Add property expiry in gspread client by @lavigne958 in https://github.com/burnash/gspread/pull/1453\n* Bump typing-extensions from 4.11.0 to 4.12.0 by @dependabot in https://github.com/burnash/gspread/pull/1471\n* Fix code block formatting typo in README by @agrvz in https://github.com/burnash/gspread/pull/1474\n* ignore jinja CVE by @lavigne958 in https://github.com/burnash/gspread/pull/1481\n* Type part of test suite utils by @lavigne958 in https://github.com/burnash/gspread/pull/1483\n* Remove passing exception as args to super in APIError by @mike-flowers-airbnb in https://github.com/burnash/gspread/pull/1477\n* Bump mypy from 1.10.0 to 1.10.1 by @dependabot in https://github.com/burnash/gspread/pull/1488\n* Update advanced.rst by @yatender-rjliving in https://github.com/burnash/gspread/pull/1492\n* Bump bandit from 1.7.8 to 1.7.9 by @dependabot in https://github.com/burnash/gspread/pull/1485\n* Bump flake8 from 7.0.0 to 7.1.0 by @dependabot in https://github.com/burnash/gspread/pull/1486\n* Bump typing-extensions from 4.12.0 to 4.12.2 by @dependabot in https://github.com/burnash/gspread/pull/1480\n* Bump mypy from 1.10.1 to 1.11.1 by @dependabot in https://github.com/burnash/gspread/pull/1497\n* Bump black from 24.4.2 to 24.8.0 by @dependabot in https://github.com/burnash/gspread/pull/1499\n* Bump flake8 from 7.1.0 to 7.1.1 by @dependabot in https://github.com/burnash/gspread/pull/1501\n* Fix docstring about BackOffHTTPClient by @pataiji in https://github.com/burnash/gspread/pull/1502\n* Fix comment to reflect correct google-auth package version requirement by @ikmals in https://github.com/burnash/gspread/pull/1503\n* Doc/community addons orm package by @lavigne958 in https://github.com/burnash/gspread/pull/1506\n* fix: fix type annotation for default_blank by @hiro-o918 in https://github.com/burnash/gspread/pull/1505\n* Bump mypy from 1.11.1 to 1.11.2 by @dependabot in https://github.com/burnash/gspread/pull/1508\n* better handler API error parsing. by @lavigne958 in https://github.com/burnash/gspread/pull/1510\n* Add test on receiving an invalid JSON in the APIError exception handler. by @lavigne958 in https://github.com/burnash/gspread/pull/1512\n* [feature] Add 'expand_table' feature by @lavigne958 in https://github.com/burnash/gspread/pull/1475\n* Bump bandit from 1.7.9 to 1.7.10 by @dependabot in https://github.com/burnash/gspread/pull/1514\n* Created a `batch_merge` function [Issue #1473] by @muddi900 in https://github.com/burnash/gspread/pull/1498\n* Added a range option to `Worksheet.get_notes` [Issue #1482] by @muddi900 in https://github.com/burnash/gspread/pull/1487\n* Documentation update for gspread.worksheet.Worksheet.get_all_records by @levon003 in https://github.com/burnash/gspread/pull/1529\n* add example for `batch_merge` by @alifeee in https://github.com/burnash/gspread/pull/1542\n* explicitly list exported package symbols by @alinsavix in https://github.com/burnash/gspread/pull/1531\n\n6.1.4 (2024-10-21)\n------------------\n\n* remove dependency on requests-2.27.0\n\n6.1.3 (2024-10-03)\n------------------\n\n* ignore jinja CVE by @lavigne958 in https://github.com/burnash/gspread/pull/1481\n* Remove passing exception as args to super in APIError by @mike-flowers-airbnb in https://github.com/burnash/gspread/pull/1477\n* better handler API error parsing. by @lavigne958 in https://github.com/burnash/gspread/pull/1510\n* Add test on receiving an invalid JSON in the APIError exception handler. by @lavigne958 in https://github.com/burnash/gspread/pull/1512\n\n6.1.2 (2024-05-17)\n------------------\n\n* add note about runnings tests to contrib guide by @alifeee in https://github.com/burnash/gspread/pull/1465\n* Some updates on `get_notes` by @nbwzx in https://github.com/burnash/gspread/pull/1461\n\n6.1.1 (2024-05-16)\n------------------\n\n* Add some missing typing in code by @lavigne958 in https://github.com/burnash/gspread/pull/1448\n* 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\n* Added 'add_data_validation` to `Workhsheet` [Issue #1420] by @muddi900 in https://github.com/burnash/gspread/pull/1444\n* Bump typing-extensions from 4.10.0 to 4.11.0 by @dependabot in https://github.com/burnash/gspread/pull/1450\n* Bump black from 23.3.0 to 24.4.0 by @dependabot in https://github.com/burnash/gspread/pull/1452\n* 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\n* add `get_notes` by @nbwzx in https://github.com/burnash/gspread/pull/1451\n* Bump mypy from 1.9.0 to 1.10.0 by @dependabot in https://github.com/burnash/gspread/pull/1459\n* Bump black from 24.4.0 to 24.4.2 by @dependabot in https://github.com/burnash/gspread/pull/1460\n* bugfix: handle domain name in spreadsheet copy permissions by @lavigne958 in https://github.com/burnash/gspread/pull/1458\n* Fix/api key auth version by @alifeee in https://github.com/burnash/gspread/pull/1463\n* Ignore pip vulnerabilities in CI. by @lavigne958 in https://github.com/burnash/gspread/pull/1464\n* Remove StrEnum dependency and added custom class[issue #1462] by @muddi900 in https://github.com/burnash/gspread/pull/1469\n\n6.1.0 (2024-03-28)\n------------------\n\n* Add py.typed marker by @lavigne958 in https://github.com/burnash/gspread/pull/1422\n* Improve back-off client by @lavigne958 in https://github.com/burnash/gspread/pull/1415\n* Add new auth method API key by @lavigne958 in https://github.com/burnash/gspread/pull/1428\n* Bugfix/add set timeout by @lavigne958 in https://github.com/burnash/gspread/pull/1417\n* Fix wrapper `cast_to_a1_notation` by @lavigne958 in https://github.com/burnash/gspread/pull/1427\n* Bump bandit from 1.7.5 to 1.7.8 by @dependabot in https://github.com/burnash/gspread/pull/1433\n* Bump mypy from 1.6.1 to 1.9.0 by @dependabot in https://github.com/burnash/gspread/pull/1432\n* Bump typing-extensions from 4.8.0 to 4.10.0 by @dependabot in https://github.com/burnash/gspread/pull/1424\n* Bump flake8 from 5.0.4 to 7.0.0 by @dependabot in https://github.com/burnash/gspread/pull/1375\n* fix error message readability by @imrehg in https://github.com/burnash/gspread/pull/1435\n* Add missing method `import_csv()` by @lavigne958 in https://github.com/burnash/gspread/pull/1426\n* update readme examples by @alifeee in https://github.com/burnash/gspread/pull/1431\n* Add user friendly message when we can't override a test cassette by @lavigne958 in https://github.com/burnash/gspread/pull/1438\n* Allow \"warning\" type protected ranges by @alifeee in https://github.com/burnash/gspread/pull/1439\n* Improve README and documentation with value render options by @lavigne958 in https://github.com/burnash/gspread/pull/1446\n\n6.0.2 (2024-02-14)\n------------------\n\n* Fixup gspread client init arguments by @lavigne958 in https://github.com/burnash/gspread/pull/1412\n\n6.0.1 (2024-02-06)\n------------------\n\n* Allow client to use external Session object by @lavigne958 in https://github.com/burnash/gspread/pull/1384\n* Remove-py-3.7-support by @alifeee in https://github.com/burnash/gspread/pull/1396\n* bugfix/client export by @lavigne958 in https://github.com/burnash/gspread/pull/1392\n* Fix oauth flow typo by @alifeee in https://github.com/burnash/gspread/pull/1397\n* check oauth creds type using `isinstance` by @alifeee in https://github.com/burnash/gspread/pull/1398\n* Fix type hints at find method in worksheet.py by @deftfitf in https://github.com/burnash/gspread/pull/1407\n* Fixup get empty cell value is `None` by @lavigne958 in https://github.com/burnash/gspread/pull/1404\n* Fix missing attribute `spreadsheet` in `Worksheet`. by @lavigne958 in https://github.com/burnash/gspread/pull/1402\n* update migration guide by @alifeee in https://github.com/burnash/gspread/pull/1409\n\n6.0.0 (2024-01-28)\n------------------\nNew Contributor\n* Remove deprecated method delete_row by @cgkoutzigiannis in https://github.com/burnash/gspread/pull/1062\n* Initial typing in client.py by @OskarBrzeski in https://github.com/burnash/gspread/pull/1159\n* Split client http client by @lavigne958 in https://github.com/burnash/gspread/pull/1190\n* Spelling fix & update docs with date_time_render_option behaviour by @alifeee in https://github.com/burnash/gspread/pull/1187\n* #966  Add sketch typing for utils.py by @butvinm in https://github.com/burnash/gspread/pull/1196\n* Remove accepted_kwargs decorator by @lavigne958 in https://github.com/burnash/gspread/pull/1229\n* Remove/python-3.7 by @alifeee in https://github.com/burnash/gspread/pull/1234\n* Bump isort from 5.11.4 to 5.12.0 by @dependabot in https://github.com/burnash/gspread/pull/1165\n* bump flake8 to 6.0.0 by @alifeee in https://github.com/burnash/gspread/pull/1236\n* merge master into 6.0.0 by @lavigne958 in https://github.com/burnash/gspread/pull/1241\n* Remplace named tuples with enums by @lavigne958 in https://github.com/burnash/gspread/pull/1250\n* Feature/add type hints worksheets by @lavigne958 in https://github.com/burnash/gspread/pull/1254\n* Implement hex color conversion by @idonec in https://github.com/burnash/gspread/pull/1270\n* remove lastUpdateTime by @alifeee in https://github.com/burnash/gspread/pull/1295\n* Merge `master` into `feature/release_6_0_0` by @alifeee in https://github.com/burnash/gspread/pull/1320\n* Add type checking to lint by @alifeee in https://github.com/burnash/gspread/pull/1337\n* Warning/update swapped args by @alifeee in https://github.com/burnash/gspread/pull/1336\n* Improve `Worksheet.sort()` signature by @lavigne958 in https://github.com/burnash/gspread/pull/1342\n* Make `get_values` and alias of `get` by @alifeee in https://github.com/burnash/gspread/pull/1296\n* fix type issue (remove `.first()` function) by @alifeee in https://github.com/burnash/gspread/pull/1344\n* Remove/get records   use index by @alifeee in https://github.com/burnash/gspread/pull/1345\n* increase warning stacklevel from 1 to 2 by @alifeee in https://github.com/burnash/gspread/pull/1361\n* Feature/merge master by @lavigne958 in https://github.com/burnash/gspread/pull/1371\n* feature/merge master by @lavigne958 in https://github.com/burnash/gspread/pull/1372\n* Simplify get records by @alifeee in https://github.com/burnash/gspread/pull/1374\n* Add util function `to_records` to build records by @lavigne958 in https://github.com/burnash/gspread/pull/1377\n* feature/add utils get records by @lavigne958 in https://github.com/burnash/gspread/pull/1378\n* Add migration guide for get_all_records by @lavigne958 in https://github.com/burnash/gspread/pull/1379\n* feature/merge master into release 6 0 0 by @lavigne958 in https://github.com/burnash/gspread/pull/1381\n* Feature/release 6 0 0 by @lavigne958 in https://github.com/burnash/gspread/pull/1382\n\n5.12.4 (2023-12-31)\n-------------------\n\n* Bump actions/setup-python from 4 to 5 by @dependabot in https://github.com/burnash/gspread/pull/1370\n* Fixed default value of merge_type parameter in merge_cells function docstring. by @neolooong in https://github.com/burnash/gspread/pull/1373\n\n5.12.3 (2023-12-15)\n-------------------\n\n* 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\n\n5.12.2 (2023-12-04)\n-------------------\n\n* Many fixes for `get_records` by @alifeee in https://github.com/burnash/gspread/pull/1357\n* change `worksheet.update` migration guide by @alifeee in https://github.com/burnash/gspread/pull/1362\n\n5.12.1 (2023-11-29)\n-------------------\n\n* feature/readme migration v6 by @lavigne958 in https://github.com/burnash/gspread/pull/1297\n* add deprecation warnings for lastUpdateTime... by @alifeee in https://github.com/burnash/gspread/pull/1333\n* remove `use_index` and references to it in `get_records` by @alifeee in https://github.com/burnash/gspread/pull/1343\n* make deprecation warning dependent on if kwarg is used for client_factory by @alifeee in https://github.com/burnash/gspread/pull/1349\n* fix 1352 expected headers broken by @alifeee in https://github.com/burnash/gspread/pull/1353\n* 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\n\n5.12.0 (2023-10-22)\n-------------------\n\n* feature -- adding `worksheet.get_records` to get specific row ranges by @AndrewBasem1 in https://github.com/burnash/gspread/pull/1301\n* Fix list_spreadsheet_files return value by @mephinet in https://github.com/burnash/gspread/pull/1308\n* Fix warning message for `worksheet.update` method by @ksj20 in https://github.com/burnash/gspread/pull/1312\n* change lambda function to dict (fix pyupgrade issue) by @alifeee in https://github.com/burnash/gspread/pull/1319\n* allows users to silence deprecation warnings by @lavigne958 in https://github.com/burnash/gspread/pull/1324\n* Add `maintain_size` to keep asked for size in `get`, `get_values` by @alifeee in https://github.com/burnash/gspread/pull/1305\n\n5.11.3 (2023-09-29)\n-------------------\n\n* Fix list_spreadsheet_files return value by @mephinet in https://github.com/burnash/gspread/pull/1308\n\n5.11.2 (2023-09-18)\n-------------------\n\n* Fix merge_combined_cells in get_values (AND 5.11.2 RELEASE) by @alifeee in https://github.com/burnash/gspread/pull/1299\n\n5.11.1 (2023-09-06)\n-------------------\n\n* Bump actions/checkout from 3 to 4 by @dependabot in https://github.com/burnash/gspread/pull/1288\n* remove Drive API access on Spreadsheet init (FIX - VERSION 5.11.1) by @alifeee in https://github.com/burnash/gspread/pull/1291\n\n5.11.0 (2023-09-04)\n-------------------\n\n* add docs/build to .gitignore by @alifeee in https://github.com/burnash/gspread/pull/1246\n* add release process to CONTRIBUTING.md by @alifeee in https://github.com/burnash/gspread/pull/1247\n* Update/clean readme badges by @lavigne958 in https://github.com/burnash/gspread/pull/1251\n* add test_fill_gaps and docstring for fill_gaps by @alifeee in https://github.com/burnash/gspread/pull/1256\n* Remove API calls from `creationTime`/`lastUpdateTime` by @alifeee in https://github.com/burnash/gspread/pull/1255\n* Fix Worksheet ID Type Inconsistencies by @FlantasticDan in https://github.com/burnash/gspread/pull/1269\n* Add `column_count` prop as well as `col_count` by @alifeee in https://github.com/burnash/gspread/pull/1274\n* Add required kwargs with no default value by @lavigne958 in https://github.com/burnash/gspread/pull/1271\n* Add deprecation warnings for colors by @alifeee in https://github.com/burnash/gspread/pull/1278\n* Add better Exceptions on opening spreadsheets by @alifeee in https://github.com/burnash/gspread/pull/1277\n\n5.10.0 (2023-06-29)\n-------------------\n\n* Fix rows_auto_resize in worksheet.py by removing redundant self by @MagicMc23 in https://github.com/burnash/gspread/pull/1194\n* Add deprecation warning for future release 6.0.x by @lavigne958 in https://github.com/burnash/gspread/pull/1195\n* FEATURE: show/hide gridlines (#1197) by @alifeee in https://github.com/burnash/gspread/pull/1202\n* CLEANUP: cleanup tox.ini, and ignore ./env by @alifeee in https://github.com/burnash/gspread/pull/1200\n* Refactor/update-contributing-guide by @alifeee in https://github.com/burnash/gspread/pull/1206\n* Spelling fix (with legacy option) by @alifeee in https://github.com/burnash/gspread/pull/1210\n* 457-fetch-without-hidden-worksheets by @alifeee in https://github.com/burnash/gspread/pull/1207\n* Add_deprecated_warning_sort_method by @lavigne958 in https://github.com/burnash/gspread/pull/1198\n* Update (and test for) internal properties on change by @alifeee in https://github.com/burnash/gspread/pull/1211\n* Feature: Add \"Remove tab colour\" method by @alifeee in https://github.com/burnash/gspread/pull/1199\n* Refresh-test-cassettes by @alifeee in https://github.com/burnash/gspread/pull/1217\n* update self._properties after batch_update by @alifeee in https://github.com/burnash/gspread/pull/1221\n* 700-fill-merged-cells by @alifeee in https://github.com/burnash/gspread/pull/1215\n* Fix/update-internal-properties by @alifeee in https://github.com/burnash/gspread/pull/1225\n* Add breaking change warning in Worksheet.update() by @lavigne958 in https://github.com/burnash/gspread/pull/1226\n* Bump codespell from 2.2.4 to 2.2.5 by @dependabot in https://github.com/burnash/gspread/pull/1232\n* Add/refresh last update time by @alifeee in https://github.com/burnash/gspread/pull/1233\n* Update-build-tools by @alifeee in https://github.com/burnash/gspread/pull/1231\n* add read the doc configuration file by @lavigne958 in https://github.com/burnash/gspread/pull/1235\n* update licence year by @alifeee in https://github.com/burnash/gspread/pull/1237\n* remove deprecated methods from tests by @alifeee in https://github.com/burnash/gspread/pull/1238\n\n5.9.0 (2023-05-11)\n------------------\n\n* Bugfix/fix get last update time by @lavigne958 in https://github.com/burnash/gspread/pull/1186\n* Add batch notes insert/update/clear by @lavigne958 in https://github.com/burnash/gspread/pull/1189\n\n5.8.0 (2023-04-05)\n------------------\n* Bump black from 22.10.0 to 22.12.0 by @dependabot in https://github.com/burnash/gspread/pull/1154\n* Bump isort from 5.10.1 to 5.11.3 by @dependabot in https://github.com/burnash/gspread/pull/1155\n* Bump isort from 5.11.3 to 5.11.4 by @dependabot in https://github.com/burnash/gspread/pull/1157\n* #1104: added a delete by worksheet id method by @muddi900 in https://github.com/burnash/gspread/pull/1148\n* improve CI workflow - upgrade setuptools to fix CVE by @lavigne958 in https://github.com/burnash/gspread/pull/1179\n* Bump codespell from 2.2.2 to 2.2.4 by @dependabot in https://github.com/burnash/gspread/pull/1178\n* Bump bandit from 1.7.4 to 1.7.5 by @dependabot in https://github.com/burnash/gspread/pull/1177\n* Bump black from 22.12.0 to 23.1.0 by @dependabot in https://github.com/burnash/gspread/pull/1168\n* Update user-guide.rst to include a warning by @alsaenko in https://github.com/burnash/gspread/pull/1181\n* Fixed typo in docs/user-guide.rst by @raboba2re in https://github.com/burnash/gspread/pull/1182\n* Bump black from 23.1.0 to 23.3.0 by @dependabot in https://github.com/burnash/gspread/pull/1183\n* Handle cases when rgbColor is not set by @lavigne958 in https://github.com/burnash/gspread/pull/1184\n\n5.7.2 (2022-12-03)\n------------------\n* Fix: `hidden` property might not be set from the API by @lavigne958 in https://github.com/burnash/gspread/pull/1151\n\n5.7.1 (2022-11-17)\n------------------\n* Fix dependencies required version by @lavigne958 in https://github.com/burnash/gspread/pull/1147\n\n5.7.0 (2022-11-13)\n------------------\n* chore: Update outdated LICENSE year by @bluzir in https://github.com/burnash/gspread/pull/1124\n* add dependabot to maintain dependencies by @lavigne958 in https://github.com/burnash/gspread/pull/1126\n* improve trigger on CI by @lavigne958 in https://github.com/burnash/gspread/pull/1134\n* Bump bandit from 1.7.0 to 1.7.4 by @dependabot in https://github.com/burnash/gspread/pull/1133\n* cancel previous run on same ref by @lavigne958 in https://github.com/burnash/gspread/pull/1135\n* Bump actions/setup-python from 2 to 4 by @dependabot in https://github.com/burnash/gspread/pull/1127\n* Bump actions/checkout from 2 to 3 by @dependabot in https://github.com/burnash/gspread/pull/1128\n* Bump black from 22.3.0 to 22.10.0 by @dependabot in https://github.com/burnash/gspread/pull/1132\n* Bump isort from 5.9.3 to 5.10.1 by @dependabot in https://github.com/burnash/gspread/pull/1131\n* Bump codespell from 2.1.0 to 2.2.2 by @dependabot in https://github.com/burnash/gspread/pull/1130\n* add named tuple for `DateTimeRenderOption` by @lavigne958 in https://github.com/burnash/gspread/pull/1136\n* Feature/copy cut paste by @lavigne958 in https://github.com/burnash/gspread/pull/1138\n* isSheetHidden method added to worksheet.py by @SazidAF in https://github.com/burnash/gspread/pull/1140\n\n5.6.2 (2022-10-23)\n------------------\n* update parent folder for `client.copy` method by @lavigne958 in https://github.com/burnash/gspread/pull/1123\n\n5.6.0 (2022-09-10)\n------------------\n* Fix `clear_note` method when using numeric boundaries by @lavigne958 in https://github.com/burnash/gspread/pull/1106\n* Fix a typo in the permissions:create API payload by @jiananma in https://github.com/burnash/gspread/pull/1107\n* Fix spreadsheet URL by @lavigne958 in https://github.com/burnash/gspread/pull/1110\n* Return created permission on `Spreadsheet.share()` by @lavigne958 in https://github.com/burnash/gspread/pull/1111\n* (fixed #1113) Supply correct Google API v3 permission for domains by @NickCrews in https://github.com/burnash/gspread/pull/1115\n* Bugfix/numericese all by @lavigne958 in https://github.com/burnash/gspread/pull/1119\n\nNew Contributors\n****************\n* @jiananma made their first contribution in https://github.com/burnash/gspread/pull/1107\n* @NickCrews made their first contribution in https://github.com/burnash/gspread/pull/1115\n\n5.5.0 (2022-08-31)\n------------------\n* Use pathlib by @lavigne958 in https://github.com/burnash/gspread/pull/1057\n* Migrate to drive API V3 by @lavigne958 in https://github.com/burnash/gspread/pull/1060\n* Implement __eq__ method for `Cell` by @chisvi in https://github.com/burnash/gspread/pull/1063\n* Add missing documentation on `set_timeout` by @lavigne958 in https://github.com/burnash/gspread/pull/1070\n* Add method to transfer / accept ownership of a spreadsheet by @lavigne958 in https://github.com/burnash/gspread/pull/1068\n* Add `client_factory` param to `auth` methods by @jlumbroso in https://github.com/burnash/gspread/pull/1075\n* Fix `list_protected_ranges` by @lavigne958 in https://github.com/burnash/gspread/pull/1076\n* Add function to convert column letter to column index by @lavigne958 in https://github.com/burnash/gspread/pull/1077\n* Fix docstring name of named_range() param by @dgilman in https://github.com/burnash/gspread/pull/1081\n* Fix grammar in docstring for client.export by @dgilman in https://github.com/burnash/gspread/pull/1080\n* Many typo fixes to worksheet docstrings by @dgilman in https://github.com/burnash/gspread/pull/1083\n* Fix function `numericise_all` by @lavigne958 in https://github.com/burnash/gspread/pull/1082\n* Fix documentation about `oauth_from_dict` by @lavigne958 in https://github.com/burnash/gspread/pull/1088\n* inherit_from_before option for insert_row/insert_rows by @yongrenjie in https://github.com/burnash/gspread/pull/1092\n* add method to change the color of a tab by @lavigne958 in https://github.com/burnash/gspread/pull/1095\n* docs: Fix a few typos by @timgates42 in https://github.com/burnash/gspread/pull/1094\n* Fix typo in `Worksheet.batch_format` method by @lavigne958 in https://github.com/burnash/gspread/pull/1101\n\nNew Contributors\n****************\n* @chisvi made their first contribution in https://github.com/burnash/gspread/pull/1063\n* @jlumbroso made their first contribution in https://github.com/burnash/gspread/pull/1075\n* @yongrenjie made their first contribution in https://github.com/burnash/gspread/pull/1092\n\n5.4.0 (2022-06-01)\n------------------\n* fix typo by @joswlv in https://github.com/burnash/gspread/pull/1031\n* Fix error message in `get_all_records` by @lavigne958 in https://github.com/burnash/gspread/pull/1028\n* Added feature request #1022. Auto resizing is now available for rows … by @mketer1 in https://github.com/burnash/gspread/pull/1033\n* add new method to hide/show a worksheet by @lavigne958 in https://github.com/burnash/gspread/pull/1030\n* feat: Download PDF from Spreadsheet #1035 by @100paperkite in https://github.com/burnash/gspread/pull/1036\n* Add test on `auto_resize_columns` by @lavigne958 in https://github.com/burnash/gspread/pull/1039\n* Add method to unmerge cells by @lavigne958 in https://github.com/burnash/gspread/pull/1040\n* Add method to delete a protected range by @lavigne958 in https://github.com/burnash/gspread/pull/1042\n* Feature/clean organize documentation by @lavigne958 in https://github.com/burnash/gspread/pull/1043\n* Add warning about deprecated oauth flow by @lavigne958 in https://github.com/burnash/gspread/pull/1047\n* Add new `batch_format` method. by @lavigne958 in https://github.com/burnash/gspread/pull/1049\n* Encode string to utf-8 when importing CSV content by @lavigne958 in https://github.com/burnash/gspread/pull/1054\n\nNew Contributors\n****************\n* @joswlv made their first contribution in https://github.com/burnash/gspread/pull/1031\n* @mketer1 made their first contribution in https://github.com/burnash/gspread/pull/1033\n* @100paperkite made their first contribution in https://github.com/burnash/gspread/pull/1036\n\n\n5.3.2 (2022-04-12)\n------------------\n* Bugfix/black python3.10 by @lavigne958 in https://github.com/burnash/gspread/pull/1020\n* Automate releases by @lavigne958 in https://github.com/burnash/gspread/pull/1025\n* Bugfix/get all record duplicated columns by @lavigne958 in https://github.com/burnash/gspread/pull/1021\n\n5.3.0 (2022-03-28)\n------------------\n* Feature/rework test cassettes recording by @lavigne958 in https://github.com/burnash/gspread/pull/1004\n* add method list protected ranges by @lavigne958 in https://github.com/burnash/gspread/pull/1008\n* Add new methods to add/list/delete dimensionGroups by @lavigne958 in https://github.com/burnash/gspread/pull/1010\n* Add method to hide rows/columns by @lavigne958 in https://github.com/burnash/gspread/pull/1012\n* Add ability to rename Spreadsheets (via a new Spreadsheet.update_title) by @jansim in https://github.com/burnash/gspread/pull/1013\n\n## New Contributors\n* @jansim made their first contribution in https://github.com/burnash/gspread/pull/1013\n\n5.2.0 (2022-02-27)\n------------------\n* Copy comments when during spreadsheet copy by @lavigne958 in https://github.com/burnash/gspread/pull/979\n* Update user-guide.rst by @maky-hnou in https://github.com/burnash/gspread/pull/980\n* merge setup test cassettes by @lavigne958 in https://github.com/burnash/gspread/pull/982\n* Feature/add header validation get all records by @lavigne958 in https://github.com/burnash/gspread/pull/984\n* Add timeout to client by @lavigne958 in https://github.com/burnash/gspread/pull/987\n* Feature/update timezone and locale by @lavigne958 in https://github.com/burnash/gspread/pull/989\n* Feature/make case comparison in find by @lavigne958 in https://github.com/burnash/gspread/pull/990\n* Updated API rate limits by @hvinayan in https://github.com/burnash/gspread/pull/993\n* Feature/prevent insert row to sheet with colon by @lavigne958 in https://github.com/burnash/gspread/pull/992\n\n## New Contributors\n* @maky-hnou made their first contribution in https://github.com/burnash/gspread/pull/980\n* @hvinayan made their first contribution in https://github.com/burnash/gspread/pull/993\n\n5.1.1 (2021-12-22)\n------------------\n* Fix documentation about oauth (#975 by @lavigne958)\n\n5.1.0 (2021-12-22)\n------------------\n* Codespell skip docs build folder (#962 by @lavigne958)\n\n* Update contributing guidelines (#964 by @lavigne958)\n\n* Add oauth from dict (#967 by @lavigne958)\n\n* Update README.md to include badges (#970 by @lavigne958)\n\n* Add new method to get all values as a list of Cells (#968 by @lavigne958)\n\n* automatic conversion of a cell letter to uppercase (#972 by @Burovytskyi)\n\n5.0.0 (2021-11-26)\n------------------\n* Fix a typo in HISTORY.rst (#904 by @TurnrDev)\n\n* Fix typo and fix return value written in docstrings (#903 by @rariyama)\n\n* Add deprecation warning for delete_row method in documentation (#909 by @javad94)\n\n* split files `models.py` and `test.py` (#912 by @lavigne958)\n\n* parent 39d1ecb59ca3149a8f46094c720efab883a0dc11 author Christian Clauss <cclauss@me.com> 1621149013 +0200 commit\nter Christian Clauss <cclauss@me.com> 1630103641 +0200 (#869 by @cclaus)\n\n* Enable code linter in CI (#915 by @lavigne958)\n\n* isort your imports (again), so you don't have to (#914 by @cclaus)\n\n* lint_python.yml: Try 'tox -e py' to test current Python (#916 by @cclaus)\n\n* Add more flake8 tests (#917 by @cclaus)\n\n* Update test suite (#918 by @cclaus)\n\n* Avoid IndexError when row_values() returns an empty row (#920 by @cclaus)\n\n* Bugfix - remove wrong argument in `batch_update` docstring (#912 by @lavigne958)\n\n* Improvement - Add `Worksheet.index` property (#922 by @lavigne958)\n\n* Add ability to create directory if it does not exist before saving the credentials to disk. (#925 by @benhoman)\n\n* Update test framework and VCR and cassettes (#926 by @lavigne958)\n\n* Delete .travis.yml (#928 by @cclaus)\n\n* Update tox.ini with all linting commands under lint env (by @lavigne958)\n\n* Build package and docs in CI (#930 by @lavigne958)\n\n* Update oauth2.rst (#933 by @amlestin)\n\n* Update the link to the Google Developers Console (#934 by @Croebh)\n\n* allow tests to run on windows, add and improve tests in WorksheetTests, add test on unbounded range,\n  use canonical range as specified in the API, add test cassettes, prevent InvalidGridRange,\n  improve code formatting (#937 by @Fendse)\n\n* fix fully qualified class names in API documentation (#944 by @geoffbeier)\n\n* fix editor_users_emails - get only from list not all users added to spreadsheet (#939 by @Lukasz)\n\n* add shadow method to get a named range from a speadsheet instance (#941 by @lavigne958)\n\n* auto_resize_columns (#948 by @FelipeSantos75)\n\n* add functions for defining, deleting and listing named ranges (#945 by @p-doyle)\n\n* Implement `open` sheet within Drive folder (#951 by @datavaluepeople)\n\n* Fix get range for unbounded ranges (#954 by @lavigne958)\n\n* remove potential I/O when reading spreadsheet title (956 by @lavigne958)\n\n* Add include_values_in_response to append_row & append_rows (#957 by @martimarkov)\n\n* replace raw string \"ROWS\" & \"COLUMNS\" to Dimension named tuple,\n  replace raw string \"FORMATTED_VALUE\", \"UNFORMATTED_VALUE\", \"FORMULA\" to ValueRenderOption named tuple,\n  replace raw string \"RAW\", \"USER_ENTERED\" to ValueInputOption named tuple (#958 by @ccppoo)\n\n4.0.1 (2021-08-07)\n------------------\n\n* Do not overwrite original value when trying to convert to a number (#902 by @lavigne958)\n\n\n4.0.0 (2021-08-01)\n------------------\n\n* Changed `Worksheet.find()` method returns `None` if nothing is found (#899 by @GastonBC)\n\n* Add `Worksheet.batch_clear()` to clear multiple ranges. (#897 by @lavigne958)\n\n* Fix `copy_permission` argument comparison in `Client.copy()` method (#898 by @lavigne958)\n\n* Allow creation of spreadhsheets in a shared drive (#895 by @lavigne958)\n\n* Allow `gspread.oauth()` to accept a custom credential file (#891 by @slmtpz)\n\n* Update `tox.ini`, remove python2 from env list (#887 by @cclaus)\n\n* Add `SpreadSheet.get_worksheet_by_id()` method (#857 by @a-crovetto)\n\n* Fix `store_credentials()` when `authorized_user_filename` is passed (#884 by @neuenmuller)\n\n* Remove python2 (#879 by @lavigne958)\n\n* Use `Makefile` to run tests (#883 by @lavigne958)\n\n* Update documentation `Authentication:For End Users` using OAuth Client ID (#835 by @ManuNaEira)\n\n* Allow fetching named ranges from `Worksheet.range()` (#809 by @agatti)\n\n* Update README to only mention python3.3+ (#877 by @lavigne958)\n\n* Fetch `creation` and `lastUpdate` time from `SpreadSheet` on open (#872 by @lavigne958)\n\n* Fix bug with `Worksheet.insert_row()` with `value_input_option` argument (#873 by @elijabesu)\n\n* Fix typos in doc and comments (#868 by @cclauss)\n\n* Auto cast numeric values from sheet cells to python int or float (#866 by @lavigne958)\n\n* Add `Worksheet.get_values()` method (#775 by @burnash)\n\n* Allow `gspread.oauth()` to accept a custom filename (#847 by @bastienboutonnet)\n\n* Document dictionary credentials auth (#860 by @dmytrostriletskyi)\n\n* Add `Worksheet.get_note()` (#855 by @water-ghosts )\n\n* Add steps for creating new keys (#856 by @hanzala-sohrab)\n\n* Add `folder_id` argument to `Client.copy()` (#851 by @punnerud)\n\n* Fix typos in docstrings (#848 by @dgilman)\n\n3.7.0 (2021-02-18)\n------------------\n\n* Add `Worksheet.insert_note()`, `Worksheet.update_note()`, `Worksheet.clear_note()` (#818 by @lavigne958)\n\n* Update documentation: oauth2.rst (#836 by @Prometheus3375)\n\n* Documentation fixes (#838 by @jayeshmanani)\n\n* Documentation fixes (#845 by @creednaylor)\n\n* Add `Worksheet.insert_cols()` (#802 by @AlexeyDmitriev)\n\n* Documentation fixes (#814 by @hkuffel)\n\n* Update README.md (#811 by @tasawar-hussain)\n\n* Add `value_render_option` parameter to `Worksheet.get_all_records()` (#776 by @damgad)\n\n* Remove `requests` from `install_requires` (#801)\n\n* Simplify implementation of `Worksheet.insert_rows()` (#799 by @AlexeyDmitriev)\n\n* Add `auth.service_account_from_dict()` (#785 b7 @mahenzon)\n\n* Fix `ValueRange.from_json()` (#791 by @erakli)\n\n* Update documentation: oauth2.rst (#794 by @elnjensen)\n\n* Update documentation: oauth2.rst (#789 by @Takur0)\n\n* Allow `auth` to be `None`. Fix #773 (#774 by @lepture)\n\n\n3.6.0 (2020-04-30)\n------------------\n\n* Add `Worksheet.insert_rows()` (#734 by @tr-fi)\n\n* Add `Worksheet.copy_to()` (#758 by @JoachimKoenigslieb)\n\n* Add ability to create a cell instance using A1 notation (#765 by @tivaliy)\n\n* Add `auth.service_account()` (#768)\n\n* Add Authlib usage (#552 by @lepture)\n\n\n3.5.0 (2020-04-23)\n------------------\n\n* Simplified OAuth2 flow (#762)\n\n* Fix `Worksheet.delete_rows()` index error (#760 by @rafa-guillermo)\n\n* Deprecate `Worksheet.delete_row()` (#766)\n\n* Scope `Worksheet.find()` to a specific row or a column (#739 by @alfonsocv12)\n\n* Add `Worksheet.add_protected_range()` #447 (#720 by @KesterChan01)\n\n* Add ability to fetch cell address in A1 notation (#763 by @tivaliy)\n\n* Add `Worksheet.delete_columns()` (#761 by @rafa-guillermo)\n\n* Ignore numericising specific columns in `get_all_records` (#701 by @benjamindhimes)\n\n* Add option ``folder_id`` when creating a spreadsheet (#754 by @Abdellam1994)\n\n* Add `insertDataOption` to `Worksheet.append_row()` and `Worksheet.append_rows()` (#719 by @lobatt)\n\n\n3.4.2 (2020-04-06)\n------------------\n\n* Fix Python 2 `SyntaxError` in models.py #751 (#752)\n\n\n3.4.1 (2020-04-05)\n------------------\n\n* Fix `TypeError` when using gspread in google colab (#750)\n\n\n3.4.0 (2020-04-05)\n------------------\n\n* Remove `oauth2client` in favor of `google-auth` #472, #529 (#637 by @BigHeadGeorge)\n* Convert `oauth2client` credentials to `google-auth` (#711 by @aiguofer)\n* Remove unnecessary `login()` from `gspread.authorize`\n\n* Fix sheet name quoting issue (#554, #636, #716):\n    * Add quotes to worksheet title for get_all_values (#640 by @grlbrwrg, #717 by @zynaxsoft)\n    * Escaping title containing single quotes with double quotes (#730 by @vijay-shanker)\n    * Use `utils.absolute_range_name()` to handle range names (#748)\n\n* Fix `numericise()`: add underscores test to work in python2 and <python3.6 (#622 by @epicfaace)\n\n* Add `supportsAllDrives` to Drive API requests (#709 by @justinr1234)\n\n* Add `Worksheet.merge_cells()` (#713 by @lavigne958)\n* Improve `Worksheet.merge_cells()` and add `merge_type` parameter (#742 by @aiguofer)\n\n* Add `Worksheet.sort()` (#639 by @kirillgashkov)\n\n* Add ability to reorder worksheets #570 (#571 by @robin900)\n    * Add `Spreadsheet.reorder_worksheets()`\n    * Add `Worksheet.update_index()`\n\n* Add `test_update_cell_objects` (#698 by @ogroleg)\n\n* Add `Worksheet.append_rows()` (#556 by @martinwarby, #694 by @fabytm)\n\n* Add `Worksheet.delete_rows()` (#615 by @deverlex)\n\n* Add Python 3.8 to Travis CI (#738 by @artemrys)\n\n* Speed up `Client.open()` by querying files by title in Google Drive (#684 by @aiguofer)\n\n* Add `freeze`, `set_basic_filter` and `clear_basic_filter` methods to `Worksheet` (#574 by @aiguofer)\n\n* Use Drive API v3 for creating and deleting spreadsheets (#573 by @aiguofer)\n\n* Implement `value_render_option` in `get_all_values` (#648 by @mklaber)\n\n* Set position of a newly added worksheet (#688 by @djmgit)\n* Add url properties for `Spreadsheet` and `Worksheet` (#725 by @CrossNox)\n\n* Update docs: \"APIs & auth\" menu deprecation, remove outdated images in oauth2.rst (#706 by @manasouza)\n\n\n3.3.1 (2020-04-01)\n------------------\n\n* Support old and new collections.abc.Sequence in `utils` (#745 by @timgates42)\n\n\n3.3.0 (2020-03-12)\n------------------\n\n* Added `Spreadsheet.values_batch_update()` (#731)\n* Added:\n    * `Worksheet.get()`\n    * `Worksheet.batch_get()`\n    * `Worksheet.update()`\n    * `Worksheet.batch_update()`\n    * `Worksheet.format()`\n\n* Added more parameters to `Worksheet.append_row()` (#719 by @lobatt, #726)\n* Fix usage of client.openall when a title is passed in (#572 by @aiguofer)\n\n\n3.2.0 (2020-01-30)\n------------------\n\n* Fixed `gspread.utils.cell_list_to_rect()` on non-rect cell list (#613 by @skaparis)\n* Fixed sharing from Team Drives (#646 by @wooddar)\n* Fixed KeyError in list comprehension in `Spreadsheet.remove_permissions()` (#643 by @wooddar)\n* Fixed typos in docstrings and a docstring type param (#690 by @pedrovhb)\n* Clarified supported Python versions (#651 by @hugovk)\n* Fixed the Exception message in `APIError` class (#634 by @lordofinsomnia)\n* Fixed IndexError in `Worksheet.get_all_records()` (#633 by @AivanF)\n\n* Added `Spreadsheet.values_batch_get()` (#705 by @aiguofer)\n\n\n3.1.0 (2018-11-27)\n------------------\n\n* Dropped Python 2.6 support\n\n* Fixed `KeyError` in `urllib.quote` in Python 2 (#605, #558)\n* Fixed `Worksheet.title` being out of sync after using `update_title` (#542 by @ryanpineo)\n* Fix parameter typos in docs (#616 by @bryanallen22)\n* Miscellaneous docs fixes (#604 by @dgilman)\n* Fixed typo in docs (#591 by @davidefiocco)\n\n* Added a method to copy spreadsheets (#625 by @dsask)\n* Added `with_link` attribute when sharing / adding permissions (#621 by @epicfaace)\n* Added ability to duplicate a worksheet (#617)\n* Change default behaviour of numericise function #499 (#502 by @danthelion)\n* Added `stacklevel=2` to deprecation warnings\n\n\n3.0.1 (2018-06-30)\n------------------\n\n* Fixed #538 (#553 by @ADraginda)\n\n\n3.0.0 (2018-04-12)\n------------------\n\n* This version drops Google Sheets API v3 support.\n    - API v4 was the default backend since version 2.0.0.\n    - All v4-related code has been moved from `gspread.v4` module to `gspread` module.\n\n\n2.1.1 (2018-04-08)\n------------------\n\n* Fixed #533 (#534 by @reallistic)\n\n\n2.1.0 (2018-04-07)\n------------------\n\n* URL encode the range in the value_* functions (#530 by @aiguofer)\n* Open team drive sheets by name (#527 by @ryantuck)\n\n\n2.0.1 (2018-04-01)\n------------------\n\n* Fixed #518\n* Include v4 in setup.py\n* Fetch all spreadsheets in Spreadsheet.list_spreadsheet_files (#522 by @aiguofer)\n\n\n2.0.0 (2018-03-11)\n------------------\n\n* Ported the library to Google Sheets API v4.\n\n  This is a transition release. The v3-related code is untouched,\n  but v4 is used by default. It is encouraged to move to v4 since\n  the API is faster and has more features.\n\n  API v4 is a significant change from v3. Some methods are not\n  backward compatible, so there's no support for this compatibility\n  in gspread either.\n\n  These methods and properties are not supported in v4:\n\n  * `Spreadsheet.updated`\n  * `Worksheet.updated`\n  * `Worksheet.export()`\n  * `Cell.input_value`\n\n\n0.6.2 (2016-12-20)\n------------------\n\n* Remove deprecated HTTPError\n\n0.6.1 (2016-12-20)\n------------------\n\n* Fixed error when inserting permissions #431\n\n0.6.0 (2016-12-15)\n------------------\n\n* Added spreadsheet sharing functionality\n* Added csv import\n* Fixed bug where list of sheets isn't cleared on refetch\n  #429, #386\n\n\n0.5.1 (2016-12-12)\n------------------\n\n* Fixed a missing return value in `utils.a1_to_rowcol`\n* Fixed url parsing in `Client.open_by_url`\n* Added `updated` property to `Spreadsheet` objects\n\n\n0.5.0 (2016-12-12)\n------------------\n\n* Added method to create blank spreadsheets #253\n* Added method to clear worksheets #156\n* Added method to delete a row in a worksheet #337\n* Changed `Worksheet.range` method to accept integers as coordinates #142\n* Added `default_blank` parameter to `Worksheet.get_all_records` #423\n* Use xml.etree.cElementTree when available to reduce memory usage #348\n* Fixed losing input_value data from following cells in `Worksheet.insert_row` #338\n* Deprecated `Worksheet.get_int_addr` and `Worksheet.get_addr_int`\n  in favour of `utils.a1_to_rowcol` and `utils.rowcol_to_a1` respectively\n\n\n0.4.1 (2016-07-17)\n------------------\n\n* Fix exception format to support Python 2.6\n\n\n0.4.0 (2016-06-30)\n------------------\n\n* Use request session's connection pool in HTTPSession\n\n* Removed deprecated ClientLogin\n\n\n0.3.0 (2015-12-15)\n------------------\n\n* Use Python requests instead of the native HTTPConnection object\n\n* Optimized row_values and col_values\n\n* Optimized row_values and col_values\n  Removed the _fetch_cells call for each method. This eliminates the\n  adverse effect on runtime for large worksheets.\n\n  Fixes #285, #190, #179, and #113\n\n* Optimized row_values and col_values\n  Removed the _fetch_cells call for each method. This eliminates the\n  adverse effect on runtime for large worksheets.\n\n  Fixes #285, #190, #179, and #113\n\n* Altered insert_row semantics to utilize range\n  This avoids issuing one API request per cell to retrieve the Cell\n  objects after the insertion row. This provides a significant speed-up\n  for insertions at the beginning of large sheets.\n\n* Added mock tests for Travis (MockSpreadsheetTest)\n\n* Fixed XML header issue with Python 3\n\n* Fixed Worksheet.export function and associated test\n\n* Added spreadsheet feed helper\n\n* Add CellNotFound to module exports\n  Fixes #88\n\n* Fixed utf8 encoding error caused by duplicate XML declarations\n* Fixed AttributeError when URLError caught by HTTPError catch block\n  Fixes #257\n\n* Added __iter__ method to Spreadsheet class\n\n* Fixed export test\n* Switched tests to oauth\n\n0.2.5 (2015-04-22)\n------------------\n\n* Deprecation warning for ClientLogin #210\n* Redirect github pages to ReadTheDocs\n* Bugfixes\n\n0.2.4 (2015-04-17)\n------------------\n\n* Output error response #219 #170 #194.\n* Added instructions on how to get oAuth credentials to docs.\n\n0.2.3 (2015-03-11)\n------------------\n\n* Fixed issue with `Spreadsheet.del_worksheet`.\n* Automatically refresh OAuth2 token when it has expired.\n* Added an `insert_row` method to `Worksheet`.\n* Moved docs to Read The Docs.\n* Added the `numeric_value` attribute to `Cell`.\n* Added title property to `Spreadsheet`.\n* Support for exporting worksheets.\n* Added row selection for keys in `Worksheet.get_all_records`.\n\n0.2.2 (2014-08-26)\n------------------\n\n* Fixed version not available for read-only spreadsheets bug\n\n0.2.1 (2014-05-10)\n------------------\n\n* Added OAuth2 support\n* Fixed regression bug #130. Not every POST needs If-Match header\n\n0.2.0 (2014-05-09)\n------------------\n\n* New Google Sheets support.\n* Fixed get_all_values() on empty worksheet.\n* Bugfix in get_int_addr().\n* Changed the HTTP connectivity from urllib to httlib for persistent http connections.\n\n0.1.0 (2013-07-09)\n------------------\n\n* Support for deleting worksheets from a spreadsheet.\n\n0.0.15 (2013-02-01)\n------------------\n\n* Couple of bugfixes.\n\n0.0.14 (2013-01-31)\n------------------\n\n* Bugfix in Python 3.\n\n\n0.0.12 (2011-12-25)\n------------------\n\n* Python 3 support.\n\n\n0.0.9 (2011-12-16)\n------------------\n\n* Enter the Docs.\n* New skinnier login method.\n\n\n0.0.7 (2011-12-14)\n------------------\n\n* Pypi install bugfix.\n\n\n0.0.6 (2011-12-13)\n------------------\n\n* Batch cells update.\n\n\n0.0.2 (2011-12-12)\n------------------\n\n* New spreadsheet open methods:\n\n    - Client.open_by_key\n    - Client.open_by_url\n\n\n0.0.1 (2011-12-12)\n------------------\n\n* Got rid of the wrapper.\n* Support for pluggable http session object.\n\n\npre 0.0.1 (2011-12-02)\n----------------------\n\n* Hacked a wrapper around Google's Python client library.\n"
  },
  {
    "path": "LICENSE.txt",
    "content": "Copyright (C) 2011-2023 Anton Burnashev\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# Google Spreadsheets Python API v4\n\n![main workflow](https://img.shields.io/github/actions/workflow/status/burnash/gspread/main.yaml?logo=github)\n![GitHub licence](https://img.shields.io/pypi/l/gspread?logo=github)\n![GitHub downloads](https://img.shields.io/github/downloads-pre/burnash/gspread/latest/total?logo=github)\n![documentation](https://img.shields.io/readthedocs/gspread?logo=readthedocs)\n![PyPi download](https://img.shields.io/pypi/dm/gspread?logo=pypi)\n![PyPi version](https://img.shields.io/pypi/v/gspread?logo=pypi)\n![python version](https://img.shields.io/pypi/pyversions/gspread?style=pypi)\n\n## Maintainer needed\n\nWe are sorry to announce that we are currently unable to maintain Gspread.\n\nWe are looking for new maintainers to keep up the good work.\nFeel free to reach out to us using this issue [#1570](https://github.com/burnash/gspread/issues/1570)\n\n## Overview\n\nSimple interface for working with Google Sheets.\n\nFeatures:\n\n- Open a spreadsheet by **title**, **key** or **URL**.\n- Read, write, and format cell ranges.\n- Sharing and access control.\n- Batching updates.\n\n## Installation\n\n```sh\npip install gspread\n```\n\nRequirements: Python 3.8+.\n\n## Basic Usage\n\n1. [Create credentials in Google API Console](http://gspread.readthedocs.org/en/latest/oauth2.html)\n\n2. Start using gspread\n\n```python\nimport gspread\n\n# First you need access to the Google API. Based on the route you\n# chose in Step 1, call either service_account(), oauth() or api_key().\ngc = gspread.service_account()\n\n# Open a sheet from a spreadsheet in one go\nwks = gc.open(\"Where is the money Lebowski?\").sheet1\n\n# Update a range of cells using the top left corner address\nwks.update([[1, 2], [3, 4]], \"A1\")\n\n# Or update a single cell\nwks.update_acell(\"B42\", \"it's down there somewhere, let me take another look.\")\n\n# Format the header\nwks.format('A1:B1', {'textFormat': {'bold': True}})\n```\n\n## v5.12 to v6.0 Migration Guide\n\n### Upgrade from Python 3.7\n\nPython 3.7 is [end-of-life](https://devguide.python.org/versions/). gspread v6 requires a minimum of Python 3.8.\n\n### Change `Worksheet.update` arguments\n\nThe first two arguments (`values` & `range_name`) have swapped (to `range_name` & `values`). Either swap them (works in v6 only), or use named arguments (works in v5 & v6).\n\nAs well, `values` can no longer be a list, and must be a 2D array.\n\n```diff\n- file.sheet1.update([[\"new\", \"values\"]])\n+ file.sheet1.update([[\"new\", \"values\"]]) # unchanged\n\n- file.sheet1.update(\"B2:C2\", [[\"54\", \"55\"]])\n+ file.sheet1.update([[\"54\", \"55\"]], \"B2:C2\")\n# or\n+ file.sheet1.update(range_name=\"B2:C2\", values=[[\"54\", \"55\"]])\n```\n\n### More\n\n<details><summary>See More Migration Guide</summary>\n\n### Change colors from dictionary to text\n\nv6 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.\n\n```diff\n- tab_color = {\"red\": 1, \"green\": 0.5, \"blue\": 1}\n+ tab_color = \"#FF7FFF\"\nfile.sheet1.update_tab_color(tab_color)\n```\n\n### Switch lastUpdateTime from property to method\n\n```diff\n- age = spreadsheet.lastUpdateTime\n+ age = spreadsheet.get_lastUpdateTime()\n```\n\n### Replace method `Worksheet.get_records`\n\nIn 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()`.\n\n```diff\n+ from gspread import utils\n  all_records = spreadsheet.get_all_records(head=1)\n- some_records = spreadsheet.get_all_records(head=1, first_index=6, last_index=9)\n- some_records = spreadsheet.get_records(head=1, first_index=6, last_index=9)\n+ header = spreadsheet.get(\"1:1\")[0]\n+ cells = spreadsheet.get(\"6:9\")\n+ some_records = utils.to_records(header, cells)\n```\n\n### Silence warnings\n\nIn version 5 there are many warnings to mark deprecated feature/functions/methods.\nThey can be silenced by setting the `GSPREAD_SILENCE_WARNINGS` environment variable to `1`\n\n### Add more data to `gspread.Worksheet.__init__`\n\n```diff\n  gc = gspread.service_account(filename=\"google_credentials.json\")\n  spreadsheet = gc.open_by_key(\"{{key}}\")\n  properties = spreadsheet.fetch_sheet_metadata()[\"sheets\"][0][\"properties\"]\n- worksheet = gspread.Worksheet(spreadsheet, properties)\n+ worksheet = gspread.Worksheet(spreadsheet, properties, spreadsheet.id, gc.http_client)\n```\n\n</details>\n\n## More Examples\n\n### Opening a Spreadsheet\n\n```python\n# You can open a spreadsheet by its title as it appears in Google Docs\nsh = gc.open('My poor gym results') # <-- Look ma, no keys!\n\n# If you want to be specific, use a key (which can be extracted from\n# the spreadsheet's url)\nsht1 = gc.open_by_key('0BmgG6nO_6dprdS1MN3d3MkdPa142WFRrdnRRUWl1UFE')\n\n# Or, if you feel really lazy to extract that key, paste the entire url\nsht2 = gc.open_by_url('https://docs.google.com/spreadsheet/ccc?key=0Bm...FE&hl')\n```\n\n### Creating a Spreadsheet\n\n```python\nsh = gc.create('A new spreadsheet')\n\n# But that new spreadsheet will be visible only to your script's account.\n# To be able to access newly created spreadsheet you *must* share it\n# with your email. Which brings us to…\n```\n\n### Sharing a Spreadsheet\n\n```python\nsh.share('otto@example.com', perm_type='user', role='writer')\n```\n\n### Selecting a Worksheet\n\n```python\n# Select worksheet by index. Worksheet indexes start from zero\nworksheet = sh.get_worksheet(0)\n\n# By title\nworksheet = sh.worksheet(\"January\")\n\n# Most common case: Sheet1\nworksheet = sh.sheet1\n\n# Get a list of all worksheets\nworksheet_list = sh.worksheets()\n```\n\n### Creating a Worksheet\n\n```python\nworksheet = sh.add_worksheet(title=\"A worksheet\", rows=\"100\", cols=\"20\")\n```\n\n### Deleting a Worksheet\n\n```python\nsh.del_worksheet(worksheet)\n```\n\n### Getting a Cell Value\n\n```python\n# With label\nval = worksheet.get('B1').first()\n\n# With coords\nval = worksheet.cell(1, 2).value\n```\n\n### Getting All Values From a Row or a Column\n\n```python\n# Get all values from the first row\nvalues_list = worksheet.row_values(1)\n\n# Get all values from the first column\nvalues_list = worksheet.col_values(1)\n```\n\n### Getting All Values From a Worksheet as a List of Lists\n\n```python\nfrom gspread.utils import GridRangeType\nlist_of_lists = worksheet.get(return_type=GridRangeType.ListOfLists)\n```\n\n### Getting a range of values\n\nReceive only the cells with a value in them.\n\n```python\n>>> worksheet.get(\"A1:B4\")\n[['A1', 'B1'], ['A2']]\n```\n\nReceive a rectangular array around the cells with values in them.\n\n```python\n>>> worksheet.get(\"A1:B4\", pad_values=True)\n[['A1', 'B1'], ['A2', '']]\n```\n\nReceive an array matching the request size regardless of if values are empty or not.\n\n```python\n>>> worksheet.get(\"A1:B4\", maintain_size=True)\n[['A1', 'B1'], ['A2', ''], ['', ''], ['', '']]\n```\n\n### Finding a Cell\n\n```python\n# Find a cell with exact string value\ncell = worksheet.find(\"Dough\")\n\nprint(\"Found something at R%sC%s\" % (cell.row, cell.col))\n\n# Find a cell matching a regular expression\namount_re = re.compile(r'(Big|Enormous) dough')\ncell = worksheet.find(amount_re)\n```\n\n### Finding All Matched Cells\n\n```python\n# Find all cells with string value\ncell_list = worksheet.findall(\"Rug store\")\n\n# Find all cells with regexp\ncriteria_re = re.compile(r'(Small|Room-tiering) rug')\ncell_list = worksheet.findall(criteria_re)\n```\n\n### Updating Cells\n\n```python\n# Update a single cell\nworksheet.update_acell('B1', 'Bingo!')\n\n# Update a range\nworksheet.update([[1, 2], [3, 4]], 'A1:B2')\n\n# Update multiple ranges at once\nworksheet.batch_update([{\n    'range': 'A1:B2',\n    'values': [['A1', 'B1'], ['A2', 'B2']],\n}, {\n    'range': 'J42:K43',\n    'values': [[1, 2], [3, 4]],\n}])\n```\n\n### Get unformatted cell value or formula\n\n```python\nfrom gspread.utils import ValueRenderOption\n\n# Get formatted cell value as displayed in the UI\n>>> worksheet.get(\"A1:B2\")\n[['$12.00']]\n\n# Get unformatted value from the same cell range\n>>> worksheet.get(\"A1:B2\", value_render_option=ValueRenderOption.unformatted)\n[[12]]\n\n# Get formula from a cell\n>>> worksheet.get(\"C2:D2\", value_render_option=ValueRenderOption.formula)\n[['=1/1024']]\n```\n\n### Add data validation to a range\n\n```python\nimport gspread\nfrom gspread.utils import ValidationConditionType\n\n# Restrict the input to greater than 10 in a single cell\nworksheet.add_validation(\n  'A1',\n  ValidationConditionType.number_greater,\n  [10],\n  strict=True,\n  inputMessage='Value must be greater than 10',\n)\n\n# Restrict the input to Yes/No for a specific range with dropdown\nworksheet.add_validation(\n  'C2:C7',\n   ValidationConditionType.one_of_list,\n   ['Yes',\n   'No',]\n   showCustomUi=True\n)\n```\n\n## Documentation\n\n[Documentation]\\: [https://gspread.readthedocs.io/][Documentation]\n\n[Documentation]: https://gspread.readthedocs.io/en/latest/\n\n### Ask Questions\n\nThe 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).\n\n## Contributors\n\n[List of contributors](https://github.com/burnash/gspread/graphs/contributors)\n\n## How to Contribute\n\nPlease make sure to take a moment and read the [Code of Conduct](https://github.com/burnash/gspread/blob/master/.github/CODE_OF_CONDUCT.md).\n\n### Report Issues\n\nPlease report bugs and suggest features via the [GitHub Issues](https://github.com/burnash/gspread/issues).\n\nBefore 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.\n\n### Improve Documentation\n\n[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/).\n\n### Contribute code\n\nPlease make sure to read the [Contributing Guide](https://github.com/burnash/gspread/blob/master/.github/CONTRIBUTING.md) before making a pull request.\n"
  },
  {
    "path": "docs/_templates/layout.html",
    "content": "{% extends \"!layout.html\" %}\n{% block htmltitle %}\n{{ super() }}\n<!-- Google Tag Manager -->\n<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':\nnew Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],\nj=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=\n'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);\n})(window,document,'script','dataLayer','GTM-MQMWH92');</script>\n<!-- End Google Tag Manager -->\n{% endblock %}\n{% block extrabody %} \n<!-- Google Tag Manager (noscript) -->\n<noscript><iframe src=\"https://www.googletagmanager.com/ns.html?id=GTM-MQMWH92\"\nheight=\"0\" width=\"0\" style=\"display:none;visibility:hidden\"></iframe></noscript>\n<!-- End Google Tag Manager (noscript) -->\n{% endblock %}\n{% block footer %}\n{{ super() }}\n<script type=\"text/javascript\">\n  var _gaq = _gaq || [];\n  _gaq.push(['_setAccount', 'UA-44504650-1']);\n  _gaq.push(['_trackPageview']);\n\n  (function() {\n    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;\n    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';\n    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);\n  })();\n</script>\n{% endblock %}\n"
  },
  {
    "path": "docs/advanced.rst",
    "content": "Advanced Usage\n==============\n\nCustom Authentication\n---------------------\n\nGoogle Colaboratory\n~~~~~~~~~~~~~~~~~~~\n\nIf you familiar with the Jupyter Notebook, `Google Colaboratory <https://colab.research.google.com/>`_ is probably the easiest way to get started using gspread::\n\n    from google.colab import auth\n    auth.authenticate_user()\n\n    import gspread\n    from google.auth import default\n    creds, _ = default()\n\n    gc = gspread.authorize(creds)\n\nSee the full example in the `External data: Local Files, Drive, Sheets, and Cloud Storage <https://colab.research.google.com/notebooks/io.ipynb#scrollTo=sOm9PFrT8mGG>`_ notebook.\n\n\nUsing Authlib\n~~~~~~~~~~~~~\n\nUsing ``Authlib`` instead of ``google-auth``. Similar to `google.auth.transport.requests.AuthorizedSession <https://google-auth.readthedocs.io/en/latest/reference/google.auth.transport.requests.html#google.auth.transport.requests.AuthorizedSession>`_ Authlib's ``AssertionSession`` can automatically refresh tokens.::\n\n    import json\n    from gspread import Client\n    from authlib.integrations.requests_client import AssertionSession\n\n    def create_assertion_session(conf_file, scopes, subject=None):\n        with open(conf_file, 'r') as f:\n            conf = json.load(f)\n\n        token_url = conf['token_uri']\n        issuer = conf['client_email']\n        key = conf['private_key']\n        key_id = conf.get('private_key_id')\n\n        header = {'alg': 'RS256'}\n        if key_id:\n            header['kid'] = key_id\n\n        # Google puts scope in payload\n        claims = {'scope': ' '.join(scopes)}\n        return AssertionSession(\n            grant_type=AssertionSession.JWT_BEARER_GRANT_TYPE,\n            token_endpoint=token_url,\n            issuer=issuer,\n            audience=token_url,\n            claims=claims,\n            subject=subject,\n            key=key,\n            header=header,\n        )\n\n    scopes = [\n        'https://www.googleapis.com/auth/spreadsheets',\n        'https://www.googleapis.com/auth/drive',\n    ]\n    session = create_assertion_session('your-google-conf.json', scopes)\n    gc = Client(None, session)\n\n    wks = gc.open(\"Where is the money Lebowski?\").sheet1\n\n    wks.update_acell('B2', \"it's down there somewhere, let me take another look.\")\n\n    # Fetch a cell range\n    cell_list = wks.range('A1:B7')\n"
  },
  {
    "path": "docs/api/auth.rst",
    "content": "Auth\n====\n\n.. automodule:: gspread.auth\n   :members:\n"
  },
  {
    "path": "docs/api/client.rst",
    "content": "Client\n======\n\n.. autoclass:: gspread.Client\n   :members:\n"
  },
  {
    "path": "docs/api/exceptions.rst",
    "content": "Exceptions\n==========\n\n\n.. autoexception:: gspread.exceptions.APIError\n.. autoexception:: gspread.exceptions.GSpreadException\n.. autoexception:: gspread.exceptions.IncorrectCellLabel\n.. autoexception:: gspread.exceptions.InvalidInputValue\n.. autoexception:: gspread.exceptions.NoValidUrlKeyFound\n.. autoexception:: gspread.exceptions.SpreadsheetNotFound\n.. autoexception:: gspread.exceptions.UnSupportedExportFormat\n.. autoexception:: gspread.exceptions.WorksheetNotFound\n"
  },
  {
    "path": "docs/api/http_client.rst",
    "content": "HTTP Client\n===========\n\n.. note::\n\n   This class is not intended to be used directly.\n   It is used by all gspread models to interact with the Google API\n\n.. autoclass:: gspread.HTTPClient\n   :members:\n\n.. autoclass:: gspread.BackOffHTTPClient\n   :members:\n"
  },
  {
    "path": "docs/api/index.rst",
    "content": "API Reference\n=============\n\n.. toctree::\n   :maxdepth: 2\n\n   top-level\n   auth\n   client\n   http_client\n   models/index\n   utils\n   exceptions\n"
  },
  {
    "path": "docs/api/models/cell.rst",
    "content": "Cell\n====\n\n.. autoclass:: gspread.cell.Cell\n   :members:\n"
  },
  {
    "path": "docs/api/models/index.rst",
    "content": "Models\n======\n\nThe models represent common spreadsheet entities: :class:`a spreadsheet <gspread.spreadsheet.Spreadsheet>`,\n:class:`a worksheet <gspread.worksheet.Worksheet>` and :class:`a cell <gspread.cell.Cell>`.\n\n.. note::\n\n   The classes described below should not be instantiated by the end-user. Their\n   instances result from calling other objects' methods.\n\n.. toctree::\n   :maxdepth: 2\n\n   spreadsheet\n   worksheet\n   cell\n"
  },
  {
    "path": "docs/api/models/spreadsheet.rst",
    "content": "Spreadsheet\n===========\n\n.. autoclass:: gspread.spreadsheet.Spreadsheet\n   :members:\n"
  },
  {
    "path": "docs/api/models/worksheet.rst",
    "content": "Worksheet\n=========\n\nValueRange\n----------\n\n.. autoclass:: gspread.worksheet.ValueRange\n   :members:\n\nWorksheet\n---------\n\n.. autoclass:: gspread.worksheet.Worksheet\n   :members:\n"
  },
  {
    "path": "docs/api/top-level.rst",
    "content": "Top level\n=========\n\n.. module:: gspread\n\n.. autofunction:: oauth\n.. autofunction:: service_account\n.. autofunction:: authorize\n"
  },
  {
    "path": "docs/api/utils.rst",
    "content": "Utils\n=====\n\n.. automodule:: gspread.utils\n   :members:\n   :undoc-members:\n"
  },
  {
    "path": "docs/community.rst",
    "content": "Community Extensions\n====================\n\n.. _gspread-formating-label:\n\ngspread-formating\n~~~~~~~~~~~~~~~~~\n\n`gspread-formatting <https://github.com/robin900/gspread-formatting>`_ offers extensive functionality to help you when you go beyond basic format\nprovided by ``gspread``.\n\n\n.. _gspread-pandas-label:\n\nUsing gspread with pandas\n~~~~~~~~~~~~~~~~~~~~~~~~~\n\nYou can find the below libraries to use gspread with pandas:\n\n * `gspread-pandas <https://github.com/aiguofer/gspread-pandas>`_\n * `gspread-dataframe <https://github.com/robin900/gspread-dataframe>`_\n\n.. _gspread-orm-label:\n\nObject Relational Mappers (ORMs)\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThe `gspread-models <https://github.com/s2t2/gspread-models-py>`_ package provides a straightforward and intuitive model-based\nquery interface, making it easy to interact with Google Sheets as if it were more like a database.\n\n"
  },
  {
    "path": "docs/conf.py",
    "content": "#\n# gspread documentation build configuration file, created by\n# sphinx-quickstart on Thu Dec 15 14:44:32 2011.\n#\n# This file is execfile()d with the current directory set to its containing dir.\n#\n# Note that not all possible configuration values are present in this\n# autogenerated file.\n#\n# All configuration values have a default; values that are commented out\n# serve to show the default.\n\nimport os\nimport sys\nfrom datetime import date\n\n# If extensions (or modules to document with autodoc) are in another directory,\n# add these directories to sys.path here. If the directory is relative to the\n# documentation root, use os.path.abspath to make it absolute, like shown here.\nsys.path.insert(0, os.path.abspath(\"..\"))\n\nfrom gspread import __version__  # noqa: E402\n\n# -- General configuration -----------------------------------------------------\n\n# If your documentation needs a minimal Sphinx version, state it here.\n# needs_sphinx = '1.0'\n\n# Add any Sphinx extension module names here, as strings. They can be extensions\n# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.\nextensions = [\n    \"sphinx.ext.doctest\",\n    \"sphinx.ext.todo\",\n    \"sphinx.ext.coverage\",\n    \"sphinx.ext.ifconfig\",\n    \"sphinx.ext.intersphinx\",\n    \"sphinx_toolbox.more_autodoc.autonamedtuple\",\n    \"sphinx.ext.autodoc\",\n]\n\n# Add any paths that contain templates here, relative to this directory.\ntemplates_path = [\"_templates\"]\n\n# The suffix of source filenames.\nsource_suffix = \".rst\"\n\n# The encoding of source files.\n# source_encoding = 'utf-8-sig'\n\n# The master toctree document.\nmaster_doc = \"index\"\n\n# General information about the project.\nproject = \"gspread\"\ncopyright = \"%s, Anton Burnashev\" % date.today().year\n\n# The version info for the project you're documenting, acts as replacement for\n# |version| and |release|, also used in various other places throughout the\n# built documents.\n#\n# The short X.Y version.\nversion = __version__\n# The full version, including alpha/beta/rc tags.\nrelease = version\n\n# The language for content autogenerated by Sphinx. Refer to documentation\n# for a list of supported languages.\n# language = None\n\n# There are two options for replacing |today|: either, you set today to some\n# non-false value, then it is used:\n# today = ''\n# Else, today_fmt is used as the format for a strftime call.\n# today_fmt = '%B %d, %Y'\n\n# List of patterns, relative to source directory, that match files and\n# directories to ignore when looking for source files.\nexclude_patterns = [\"_build\"]\n\n# The reST default role (used for this markup: `text`) to use for all documents.\n# default_role = None\n\n# If true, '()' will be appended to :func: etc. cross-reference text.\n# add_function_parentheses = True\n\n# If true, the current module name will be prepended to all description\n# unit titles (such as .. function::).\n# add_module_names = True\n\n# If true, sectionauthor and moduleauthor directives will be shown in the\n# output. They are ignored by default.\n# show_authors = False\n\n# The name of the Pygments (syntax highlighting) style to use.\npygments_style = \"sphinx\"\n\n# A list of ignored prefixes for module index sorting.\n# modindex_common_prefix = []\n\n\n# -- Options for HTML output ---------------------------------------------------\n\n# The theme to use for HTML and HTML Help pages.  See the documentation for\n# a list of builtin themes.\nhtml_theme = \"sphinx_rtd_theme\"\n\n# Theme options are theme-specific and customize the look and feel of a theme\n# further.  For a list of options available for each theme, see the\n# documentation.\n# html_theme_options = {}\n\n# Add any paths that contain custom themes here, relative to this directory.\n# html_theme_path = []\n\n# The name for this set of Sphinx documents.  If None, it defaults to\n# \"<project> v<release> documentation\".\n# html_title = None\n\n# A shorter title for the navigation bar.  Default is the same as html_title.\n# html_short_title = None\n\n# The name of an image file (relative to this directory) to place at the top\n# of the sidebar.\n# html_logo = None\n\n# The name of an image file (within the static path) to use as favicon of the\n# docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32\n# pixels large.\n# html_favicon = None\n\n# Add any paths that contain custom static files (such as style sheets) here,\n# relative to this directory. They are copied after the builtin static files,\n# so a file named \"default.css\" will overwrite the builtin \"default.css\".\n# html_static_path = [\"_static\"]\n\n# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,\n# using the given strftime format.\n# html_last_updated_fmt = '%b %d, %Y'\n\n# If true, SmartyPants will be used to convert quotes and dashes to\n# typographically correct entities.\n# html_use_smartypants = True\n\n# Custom sidebar templates, maps document names to template names.\n# html_sidebars = {}\n\n# Additional templates that should be rendered to pages, maps page names to\n# template names.\n# html_additional_pages = {}\n\n# If false, no module index is generated.\n# html_domain_indices = True\n\n# If false, no index is generated.\n# html_use_index = True\n\n# If true, the index is split into individual pages for each letter.\n# html_split_index = False\n\n# If true, links to the reST sources are added to the pages.\n# html_show_sourcelink = True\n\n# If true, \"Created using Sphinx\" is shown in the HTML footer. Default is True.\n# html_show_sphinx = True\n\n# If true, \"(C) Copyright ...\" is shown in the HTML footer. Default is True.\n# html_show_copyright = True\n\n# If true, an OpenSearch description file will be output, and all pages will\n# contain a <link> tag referring to it.  The value of this option must be the\n# base URL from which the finished HTML is served.\n# html_use_opensearch = ''\n\n# This is the file name suffix for HTML files (e.g. \".xhtml\").\n# html_file_suffix = None\n\n# Output file base name for HTML help builder.\nhtmlhelp_basename = \"gspreaddoc\"\n\n\n# -- Options for LaTeX output --------------------------------------------------\n\nlatex_elements = {\n    # The paper size ('letterpaper' or 'a4paper').\n    # 'papersize': 'letterpaper',\n    # The font size ('10pt', '11pt' or '12pt').\n    # 'pointsize': '10pt',\n    # Additional stuff for the LaTeX preamble.\n    # 'preamble': '',\n}\n\n# Grouping the document tree into LaTeX files. List of tuples\n# (source start file, target name, title, author, documentclass [howto/manual]).\nlatex_documents = [\n    (\"index\", \"gspread.tex\", \"gspread Documentation\", \"Anton Burnashev\", \"manual\"),\n]\n\n# The name of an image file (relative to this directory) to place at the top of\n# the title page.\n# latex_logo = None\n\n# For \"manual\" documents, if this is true, then toplevel headings are parts,\n# not chapters.\n# latex_use_parts = False\n\n# If true, show page references after internal links.\n# latex_show_pagerefs = False\n\n# If true, show URL addresses after external links.\n# latex_show_urls = False\n\n# Documents to append as an appendix to all manuals.\n# latex_appendices = []\n\n# If false, no module index is generated.\n# latex_domain_indices = True\n\n\n# -- Options for manual page output --------------------------------------------\n\n# One entry per manual page. List of tuples\n# (source start file, name, description, authors, manual section).\nman_pages = [(\"index\", \"gspread\", \"gspread Documentation\", [\"Anton Burnashev\"], 1)]\n\n# If true, show URL addresses after external links.\n# man_show_urls = False\n\n\n# -- Options for Texinfo output ------------------------------------------------\n\n# Grouping the document tree into Texinfo files. List of tuples\n# (source start file, target name, title, author,\n#  dir menu entry, description, category)\ntexinfo_documents = [\n    (\n        \"index\",\n        \"gspread\",\n        \"gspread Documentation\",\n        \"Anton Burnashev\",\n        \"gspread\",\n        \"Google Spreadsheets Python API.\",\n        \"Miscellaneous\",\n    ),\n]\n\n# Documents to append as an appendix to all manuals.\n# texinfo_appendices = []\n\n# If false, no module index is generated.\n# texinfo_domain_indices = True\n\n# How to display URL addresses: 'footnote', 'no', or 'inline'.\n# texinfo_show_urls = 'footnote'\n\n\n# -- Options for Epub output ---------------------------------------------------\n\n# Bibliographic Dublin Core info.\nepub_title = \"gspread\"\nepub_author = \"Anton Burnashev\"\nepub_publisher = \"Anton Burnashev\"\nepub_copyright = \"%s, Anton Burnashev\" % date.today().year\n\n# The language of the text. It defaults to the language option\n# or en if the language is not set.\n# epub_language = ''\n\n# The scheme of the identifier. Typical schemes are ISBN or URL.\n# epub_scheme = ''\n\n# The unique identifier of the text. This can be a ISBN number\n# or the project homepage.\n# epub_identifier = ''\n\n# A unique identification for the text.\n# epub_uid = ''\n\n# A tuple containing the cover image and cover page html template filenames.\n# epub_cover = ()\n\n# HTML files that should be inserted before the pages created by sphinx.\n# The format is a list of tuples containing the path and title.\n# epub_pre_files = []\n\n# HTML files that should be inserted after the pages created by sphinx.\n# The format is a list of tuples containing the path and title.\n# epub_post_files = []\n\n# A list of files that should not be packed into the epub file.\n# epub_exclude_files = []\n\n# The depth of the table of contents in toc.ncx.\n# epub_tocdepth = 3\n\n# Allow duplicate toc entries.\n# epub_tocdup = True\n\n# Intersphinx configuration\nintersphinx_mapping = {\n    \"python\": (\"https://docs.python.org/3.6\", (None, \"python-inv.txt\")),\n}\n"
  },
  {
    "path": "docs/index.rst",
    "content": "gspread\n=======\n\n`gspread`_ is a Python API for Google Sheets.\n\nFeatures:\n\n-  Google Sheets API v4.\n-  Open a spreadsheet by title, key or url.\n-  Read, write, and format cell ranges.\n-  Sharing and access control.\n-  Batching updates.\n\n\nInstallation\n------------\n\n.. code:: sh\n\n   pip install gspread\n\n\nRequirements: Python 3+.\n\n\nQuick Example\n-------------\n\n.. code:: python\n\n   import gspread\n\n   gc = gspread.service_account()\n\n   # Open a sheet from a spreadsheet in one go\n   wks = gc.open(\"Where is the money Lebowski?\").sheet1\n\n   # Update a range of cells using the top left corner address\n   wks.update([[1, 2], [3, 4]], 'A1')\n\n   # Or update a single cell\n   wks.update_acell('B42', \"it's down there somewhere, let me take another look.\")\n\n   # Format the header\n   wks.format('A1:B1', {'textFormat': {'bold': True}})\n\n\nGetting Started\n---------------\n\n.. toctree::\n   :maxdepth: 2\n\n   oauth2\n\n\nUsage\n-----\n\n.. toctree::\n    :maxdepth: 2\n\n    user-guide\n\nAdvanced\n--------\n\n.. toctree::\n    :maxdepth: 2\n\n    advanced\n\nCommunity extensions\n--------------------\n\n.. toctree::\n    :maxdepth: 2\n\n    community\n\n\nAPI Documentation\n---------------------------\n\n.. toctree::\n   :maxdepth: 2\n\n   api/index\n\n\nHow to Contribute\n-----------------\n\nPlease make sure to take a moment and read the `Code of Conduct`_.\n\nAsk Questions\n~~~~~~~~~~~~~\n\nThe best way to get an answer to a question is to ask on `Stack Overflow\nwith a gspread tag`_.\n\nReport Issues\n~~~~~~~~~~~~~\n\nPlease report bugs and suggest features via the `GitHub Issues`_.\n\nBefore opening an issue, search the tracker for possible duplicates. If\nyou find a duplicate, please add a comment saying that you encountered\nthe problem as well.\n\nContribute code\n~~~~~~~~~~~~~~~\n\nPlease make sure to read the `Contributing Guide`_ before making a pull\nrequest.\n\nIndices and tables\n==================\n\n* :ref:`genindex`\n* :ref:`modindex`\n* :ref:`search`\n\n.. _gspread: https://github.com/burnash/gspread\n.. _Obtain OAuth2 credentials from Google Developers Console: oauth2.html\n.. _Code of Conduct: https://github.com/burnash/gspread/blob/master/.github/CODE_OF_CONDUCT.md\n.. _Stack Overflow with a gspread tag: http://stackoverflow.com/questions/tagged/gspread?sort=votes&pageSize=50\n.. _GitHub Issues: https://github.com/burnash/gspread/issues\n.. _Contributing Guide: https://github.com/burnash/gspread/blob/master/.github/CONTRIBUTING.md\n"
  },
  {
    "path": "docs/oauth2.rst",
    "content": "Authentication\n==============\n\nTo access spreadsheets your application needs to authenticate itself with the Google Sheets API. Choose from the following options.\n\n#. Create an :ref:`API key <api-key>` if you’d like to only open public spreadsheets.\n#. (or) Create a :ref:`OAuth Client ID <oauth-client-id>` if you’d like to access spreadsheets on behalf of end users (including yourself).\n\n   - When your application runs, it will prompt the user to authorize it.\n\n#. (or) Create a :ref:`Service Account <service-account>` to access spreadsheets as a standalone bot.\n\n   - 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.\n   - Service accounts don't need any explicit permissions to access Sheets that are shared to \"anyone with the URL\".\n\nAn 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.\n\n\n.. _enable-api-access:\n\nEnable API Access for a Project\n-------------------------------\n\n1. Head to `Google Developers Console <https://console.developers.google.com/>`_ and create a new project (or select the one you already have).\n\n2. In the box labeled \"Search for APIs and Services\", search for \"Google Drive API\" and enable it.\n\n3. In the box labeled \"Search for APIs and Services\", search for \"Google Sheets API\" and enable it.\n\n\n.. _service-account:\n\nFor Bots: Using Service Account\n-------------------------------\n\nA 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].\n\nSince 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.\n\nHere's how to get one:\n\n1. :ref:`enable-api-access` if you haven't done it yet.\n\n2. Go to \"APIs & Services > Credentials\" and choose \"Create credentials > Service account key\".\n\n3. Fill out the form\n\n4. Click \"Create\" and \"Done\".\n\n5. Press \"Manage service accounts\" above Service Accounts.\n\n6. Press on **⋮** near recently created service account and select \"Manage keys\" and then click on \"ADD KEY > Create new key\".\n\n7. Select JSON key type and press \"Create\".\n\nYou will automatically download a JSON file with credentials. It may look like this:\n\n::\n\n    {\n        \"type\": \"service_account\",\n        \"project_id\": \"api-project-XXX\",\n        \"private_key_id\": \"2cd … ba4\",\n        \"private_key\": \"-----BEGIN PRIVATE KEY-----\\nNrDyLw … jINQh/9\\n-----END PRIVATE KEY-----\\n\",\n        \"client_email\": \"473000000000-yoursisdifferent@developer.gserviceaccount.com\",\n        \"client_id\": \"473 … hd.apps.googleusercontent.com\",\n        ...\n    }\n\nRemember the path to the downloaded credentials file. Also, in the next step you'll need the value of *client_email* from this file.\n\n6. 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.\n\n7. Move the downloaded file to ``~/.config/gspread/service_account.json``. Windows users should put this file to ``%APPDATA%\\gspread\\service_account.json``.\n\n8. Create a new Python file with this code:\n\n::\n\n    import gspread\n\n    gc = gspread.service_account()\n\n    sh = gc.open(\"Example spreadsheet\")\n\n    print(sh.sheet1.get('A1'))\n\nTa-da!\n\n.. NOTE::\n    If you want to store the credentials file somewhere else, specify the path to `service_account.json` in :meth:`~gspread.service_account`:\n    ::\n\n        gc = gspread.service_account(filename='path/to/the/downloaded/file.json')\n\n    Make sure you store the credentials file in a safe place.\n\nFor the curious, under the hood :meth:`~gspread.service_account` loads your credentials and authorizes gspread. Similarly to the code\nthat has been used for authentication prior to the gspread version 3.6:\n\n::\n\n    from google.oauth2.service_account import Credentials\n\n    scopes = [\n        'https://www.googleapis.com/auth/spreadsheets',\n        'https://www.googleapis.com/auth/drive'\n    ]\n\n    credentials = Credentials.from_service_account_file(\n        'path/to/the/downloaded/file.json',\n        scopes=scopes\n    )\n\n    gc = gspread.authorize(credentials)\n\nThere is also the option to pass credentials as a dictionary:\n\n::\n\n    import gspread\n    \n    credentials = {\n        \"type\": \"service_account\",\n        \"project_id\": \"api-project-XXX\",\n        \"private_key_id\": \"2cd … ba4\",\n        \"private_key\": \"-----BEGIN PRIVATE KEY-----\\nNrDyLw … jINQh/9\\n-----END PRIVATE KEY-----\\n\",\n        \"client_email\": \"473000000000-yoursisdifferent@developer.gserviceaccount.com\",\n        \"client_id\": \"473 … hd.apps.googleusercontent.com\",\n        ...\n    }\n\n    gc = gspread.service_account_from_dict(credentials)\n\n    sh = gc.open(\"Example spreadsheet\")\n\n    print(sh.sheet1.get('A1'))\n\n.. NOTE::\n   Older versions of gspread have used `oauth2client <https://github.com/google/oauth2client>`_. Google has\n   `deprecated <https://google-auth.readthedocs.io/en/latest/oauth2client-deprecation.html>`_\n   it in favor of `google-auth`. If you're still using `oauth2client` credentials, the library will convert\n   these to `google-auth` for you, but you can change your code to use the new credentials to make sure nothing\n   breaks in the future.\n\n.. _oauth-client-id:\n\nFor Bots Running inside GCP (Cloud Run, Cloud Functions, Cloud Build): Using Application-Default Credentials\n------------------------------------------------------------------------------------------------------------\n\nWhen your code runs *inside* Google Cloud, every container, function, or build already\nhas an **identity**—the service account the runtime is configured to use.  \nGoogle injects a short-lived OAuth 2.0 access token for that service account, so you\ndon’t need to ship or mount a JSON key file.  All you have to do is:\n\n1. :ref:`enable-api-access` if you haven’t done it yet (Sheets API **and** Drive API).\n\n2. Attach a service account to the Cloud Run service / Cloud Function / Cloud Build step.  \n   Share the target spreadsheet with the service account’s **email address**  \n   (e.g. `my-run-sa@project.iam.gserviceaccount.com`) just as you would with a colleague.\n\n3. Use `google.auth.default()` to pick up the in-runtime credentials and hand them to gspread:\n\n   ::\n\n       import google.auth\n       import gspread\n\n       SCOPES = [\n           \"https://www.googleapis.com/auth/spreadsheets\",\n           \"https://www.googleapis.com/auth/drive\",\n       ]\n\n       creds, _ = google.auth.default(scopes=SCOPES)\n       gc = gspread.authorize(creds)\n\n       sh = gc.open_by_key(\"1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms\")\n       print(sh.sheet1.get(\"A1\"))\n\n   * No `GOOGLE_APPLICATION_CREDENTIALS` environment variable.  \n   * No JSON key copied into the container.  \n   * Tokens are rotated automatically by the platform.\n\n4. **Local testing:** run\n\n   ::\n\n       gcloud auth application-default login \\\n           --scopes=https://www.googleapis.com/auth/drive,\\\n           https://www.googleapis.com/auth/spreadsheets\n\n   to emulate the same Application-Default Credentials flow on your laptop.\n\n.. note::\n   If you forget to pass the Sheets **and** Drive scopes when calling\n   ``google.auth.default(scopes=...)`` you will get a *403: insufficient\n   permissions* error even though the code is running on GCP.  Always include\n   both scopes.\n\n.. warning::\n   ADC proves *who* your code is, but Sheets access is still controlled by the\n   spreadsheet’s share list.  Make sure the service account is listed there,\n   otherwise you’ll see ``gspread.exceptions.SpreadsheetNotFound``.\n\nFor End Users: Using OAuth Client ID\n------------------------------------\n\nThis 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.\n\n1. :ref:`enable-api-access` if you haven't done it yet.\n#. Go to \"APIs & Services > OAuth Consent Screen.\" Click the button for \"Configure Consent Screen\".\n\n  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\".\n  #. There is no need to fill in anything in the tab \"2 Scopes\", just click \"SAVE AND CONTINUE\".\n  #. In the tab \"3 Test users\", add the Google account email of the end user, typically your own Google email. Click \"SAVE AND CONTINUE\".\n  #. Double check the \"4 Summary\" presented and click \"BACK TO DASHBOARD\".\n\n3. Go to \"APIs & Services > Credentials\"\n#. Click \"+ Create credentials\" at the top, then select \"OAuth client ID\".\n#. Select \"Desktop app\", name the credentials and click \"Create\". Click \"Ok\" in the \"OAuth client created\" popup.\n#. Download the credentials by clicking the Download JSON button in \"OAuth 2.0 Client IDs\" section.\n#. Move the downloaded file to ``~/.config/gspread/credentials.json``. Windows users should put this file to ``%APPDATA%\\gspread\\credentials.json``.\n\nCreate a new Python file with this code:\n\n::\n\n    import gspread\n\n    gc = gspread.oauth()\n\n    sh = gc.open(\"Example spreadsheet\")\n\n    print(sh.sheet1.get('A1'))\n\nWhen 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`.\nYou only need to do authorization in the browser once, following runs will reuse stored credentials.\n\n.. NOTE::\n    If you want to store the credentials file somewhere else, specify the path to `credentials.json` and `authorized_user.json` in :meth:`~gspread.oauth`:\n    ::\n\n        gc = gspread.oauth(\n            credentials_filename='path/to/the/credentials.json',\n            authorized_user_filename='path/to/the/authorized_user.json'\n        )\n\n    Make sure you store the credentials file in a safe place.\n\nThere 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\nmanager.\n\n::\n\n    import gspread\n\n    credentials = {\n        \"installed\": {\n            \"client_id\": \"12345678901234567890abcdefghijklmn.apps.googleusercontent.com\",\n            \"project_id\": \"my-project1234\",\n            \"auth_uri\": \"https://accounts.google.com/o/oauth2/auth\",\n            \"token_uri\": \"https://oauth2.googleapis.com/token\",\n            ...\n        }\n    }\n    gc, authorized_user = gspread.oauth_from_dict(credentials)\n\n    sh = gc.open(\"Example spreadsheet\")\n\n    print(sh.sheet1.get('A1'))\n\nOnce authenticated you must store the returned json string containing your authenticated user information. Provide that details as a python dict\nas second argument in your next `oauth` request to be directly authenticated and skip the flow.\n\n.. NOTE::\n    The second time if your authorized user has not expired, you can omit the credentials.\n    Be aware, if the authorized user has expired your credentials are required to authenticate again.\n\n::\n\n    import gspread\n\n    credentials = {\n        \"installed\": {\n            \"client_id\": \"12345678901234567890abcdefghijklmn.apps.googleusercontent.com\",\n            \"project_id\": \"my-project1234\",\n            \"auth_uri\": \"https://accounts.google.com/o/oauth2/auth\",\n            \"token_uri\": \"https://oauth2.googleapis.com/token\",\n            ...\n        }\n    }\n    authorized_user = {\n        \"refresh_token\": \"8//ThisALONGTOkEn....\",\n        \"token_uri\": \"https://oauth2.googleapis.com/token\",\n        \"client_id\": \"12345678901234567890abcdefghijklmn.apps.googleusercontent.com\",\n        \"client_secret\": \"MySecRet....\",\n        \"scopes\": [\n            \"https://www.googleapis.com/auth/spreadsheets\",\n            \"https://www.googleapis.com/auth/drive\"\n        ],\n        \"expiry\": \"1070-01-01T00:00:00.000001Z\"\n    }\n    gc, authorized_user = gspread.oauth_from_dict(credentials, authorized_user)\n\n    sh = gc.open(\"Example spreadsheet\")\n\n    print(sh.sheet1.get('A1'))\n\n.. warning::\n    Security credentials file and authorized credentials contain sensitive data. **Do not share these files with others** and treat them like private keys.\n\n    If you are concerned about giving the application access to your spreadsheets and Drive, use Service Accounts.\n\n.. NOTE::\n    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.\n    Click **Edit on GitHub** in the top right corner of the page, make it better and submit a PR.\n\n\n.. _api-key:\n\nFor public spreadsheets only\n----------------------------\n\nAn API key is a token that allows an application to open public spreadsheet files.\n\nHere's how to get one:\n\n1. :ref:`enable-api-access` if you haven't done it yet.\n\n2. Go to \"APIs & Services > Credentials\" and choose \"Create credentials > API key\"\n\n3. A pop-up should display your newly created key.\n\n4. Copy the key.\n\n5. That's it your key is created.\n\n.. note::\n\n   You can access your key any time later, come back to the \"APIs & Services > Credentials\" page,\n   you'll be able to see your key again.\n\n6. Create a new Python file with this code:\n\n::\n\n    import gspread\n\n    gc = gspread.api_key(\"<your newly create key>\")\n\n    sh = gc.open_by_key(\"1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms\")\n\n    print(sh.sheet1.get('A1'))\n\nTa-da !\n\n.. note::\n\n   You can only open public keys, this means you can only open spreadsheet files\n   using the methods: ``gc.open_by_key`` and ``gc.open_by_url``.\n\n   The method ``gc.open()`` searches your private files to find the one with a matching\n   name so it will never work.\n"
  },
  {
    "path": "docs/requirements.txt",
    "content": "sphinx==6.2.1\nsphinx_rtd_theme\nsphinx-toolbox\n"
  },
  {
    "path": "docs/user-guide.rst",
    "content": "Examples of gspread Usage\n=========================\n\nIf you haven't yet authorized your app, read :doc:`oauth2` first.\n\n\nOpening a Spreadsheet\n~~~~~~~~~~~~~~~~~~~~~\n\nYou can open a spreadsheet by its title as it appears in Google Docs:\n\n.. code:: python\n\n   sh = gc.open('My poor gym results')\n   \n.. NOTE::\n    If you have multiple Google Sheets with the same title, only the latest sheet will be \n    opened by this method without throwing an error. It's recommended to open the sheet\n    using its unique ID instead (see below)\n      \n\nIf you want to be specific, use a key (which can be extracted from\nthe spreadsheet's url):\n\n.. code:: python\n\n   sht1 = gc.open_by_key('0BmgG6nO_6dprdS1MN3d3MkdPa142WFRrdnRRUWl1UFE')\n\nOr, if you feel really lazy to extract that key, paste the entire spreadsheet's url\n\n.. code:: python\n\n   sht2 = gc.open_by_url('https://docs.google.com/spreadsheet/ccc?key=0Bm...FE&hl')\n\n\nCreating a Spreadsheet\n~~~~~~~~~~~~~~~~~~~~~~\n\nUse :meth:`~gspread.Client.create` to create a new blank spreadsheet:\n\n.. code:: python\n\n   sh = gc.create('A new spreadsheet')\n\n.. NOTE::\n    If you're using a :ref:`service account <service-account>`, this new spreadsheet will be\n    visible only to this account. To be able to access newly created spreadsheet\n    from Google Sheets with your own Google account you *must* share it with your\n    email. See how to share a spreadsheet in the section below.\n\nSharing a Spreadsheet\n~~~~~~~~~~~~~~~~~~~~~\n\nIf your email is *otto@example.com* you can share the newly created spreadsheet\nwith yourself:\n\n.. code:: python\n\n   sh.share('otto@example.com', perm_type='user', role='writer')\n\nSee :meth:`~gspread.models.Spreadsheet.share` documentation for a full list of accepted parameters.\n\n\nSelecting a Worksheet\n~~~~~~~~~~~~~~~~~~~~~\n\nSelect worksheet by index. Worksheet indexes start from zero:\n\n.. code:: python\n\n   worksheet = sh.get_worksheet(0)\n\nOr by title:\n\n.. code:: python\n\n   worksheet = sh.worksheet(\"January\")\n\nOr the most common case: *Sheet1*:\n\n.. code:: python\n\n   worksheet = sh.sheet1\n\nTo get a list of all worksheets:\n\n.. code:: python\n\n   worksheet_list = sh.worksheets()\n\n\nCreating a Worksheet\n~~~~~~~~~~~~~~~~~~~~\n\n.. code:: python\n\n   worksheet = sh.add_worksheet(title=\"A worksheet\", rows=100, cols=20)\n\n\nDeleting a Worksheet\n~~~~~~~~~~~~~~~~~~~~\n\n.. code:: python\n\n   sh.del_worksheet(worksheet)\n\n\nUpdating a Worksheet's name and color\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n.. code:: python\n\n   worksheet.update_title(\"December Transactions\")\n   worksheet.update_tab_color({\"red\": 1, \"green\": 0.5, \"blue\": 0.5})\n\n\nGetting a Cell Value\n~~~~~~~~~~~~~~~~~~~~\n\nUsing `A1 notation <https://developers.google.com/sheets/api/guides/concepts#a1_notation>`_:\n\n.. code:: python\n\n   val = worksheet.acell('B1').value\n\nOr row and column coordinates:\n\n.. code:: python\n\n   val = worksheet.cell(1, 2).value\n\nIf you want to get a cell formula:\n\n.. code:: python\n\n   cell = worksheet.acell('B1', value_render_option='FORMULA').value\n\n   # or\n\n   cell = worksheet.cell(1, 2, value_render_option='FORMULA').value\n\nGetting Unformatted Cell Value\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nGet the Unformatted value from a cell.\nExample: cells formatted as currency will display with the selected\ncurrency but they actual value is regular number.\n\nGet the formatted (as displayed) value:\n\n.. code:: python\n\n   worksheet.get(\"A1:B2\")\n\nResults in: ``[['$12.00']]``\n\nGet the unformatted value:\n\n.. code:: python\n\n   from gspread.utils import ValueRenderOption\n   worksheet.get(\"A1:B2\", value_render_option=ValueRenderOption.unformatted)\n\nResults in: ``[[12]]``\n\nGetting Cell formula\n~~~~~~~~~~~~~~~~~~~~\n\nGet the formula from a cell instead of the resulting value:\n\n.. code:: python\n\n   from gspread.utils import ValueRenderOption\n   worksheet.get(\"G6\", value_render_option=ValueRenderOption.formula)\n\nResulsts in: ``[['=1/1024']]``\n\n\nGetting All Values From a Row or a Column\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nGet all values from the first row:\n\n.. code:: python\n\n   values_list = worksheet.row_values(1)\n\nGet all values from the first column:\n\n.. code:: python\n\n   values_list = worksheet.col_values(1)\n\n.. NOTE::\n    So far we've been fetching a limited amount of data from a sheet. This works great until\n    you need to get values from hundreds of cells or iterating over many rows or columns.\n\n    Under the hood, gspread uses `Google Sheets API v4 <https://developers.google.com/sheets/api>`_.\n    Most of the time when you call a gspread method to fetch or update a sheet gspread produces\n    one HTTP API call.\n\n    HTTP calls have performance costs. So if you find your app fetching values one by one in\n    a loop or iterating over rows or columns you can improve the performance of the app by fetching\n    data in one go.\n\n    What's more, Sheets API v4 introduced `Usage Limits <https://developers.google.com/sheets/api/limits>`_\n    (as of this writing, 300 requests per 60 seconds per project, and 60 requests per 60 seconds per user). When your\n    application hits that limit, you get an :exc:`~gspread.exceptions.APIError` `429 RESOURCE_EXHAUSTED`.\n\n    Here are the methods that may help you to reduce API calls:\n\n        * :meth:`~gspread.models.Worksheet.get_all_values` fetches values from all of the cells of the sheet.\n        * :meth:`~gspread.models.Worksheet.get` fetches all values from a range of cells.\n        * :meth:`~gspread.models.Worksheet.batch_get` can fetch values from multiple ranges of cells with one API call.\n        * :meth:`~gspread.models.Worksheet.update` lets you update a range of cells with a list of lists.\n        * :meth:`~gspread.models.Worksheet.batch_update` lets you update multiple ranges of cells with one API call.\n\n\nGetting All Values From a Worksheet as a List of Lists\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n.. code:: python\n\n   list_of_lists = worksheet.get_all_values()\n\n\nGetting All Values From a Worksheet as a List of Dictionaries\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n.. code:: python\n\n   list_of_dicts = worksheet.get_all_records()\n\n\nFinding a Cell\n~~~~~~~~~~~~~~\n\nFind a cell matching a string:\n\n.. code:: python\n\n   cell = worksheet.find(\"Dough\")\n\n   print(\"Found something at R%sC%s\" % (cell.row, cell.col))\n\nFind a cell matching a regular expression\n\n.. code:: python\n\n   amount_re = re.compile(r'(Big|Enormous) dough')\n   cell = worksheet.find(amount_re)\n\n`find` returns `None` if value is not Found\n\nFinding All Matched Cells\n~~~~~~~~~~~~~~~~~~~~~~~~~\n\nFind all cells matching a string:\n\n.. code:: python\n\n   cell_list = worksheet.findall(\"Rug store\")\n\nFind all cells matching a regexp:\n\n.. code:: python\n\n   criteria_re = re.compile(r'(Small|Room-tiering) rug')\n   cell_list = worksheet.findall(criteria_re)\n\nClear A Worksheet\n~~~~~~~~~~~~~~~~~\n\nClear one or multiple cells ranges at once:\n\n.. code:: python\n\n   worksheet.batch_clear([\"A1:B1\", \"C2:E2\", \"my_named_range\"])\n\nClear the entire worksheet:\n\n.. code:: python\n\n   worksheet.clear()\n\nCell Object\n~~~~~~~~~~~\n\nEach cell has a value and coordinates properties:\n\n.. code:: python\n\n\n   value = cell.value\n   row_number = cell.row\n   column_number = cell.col\n\nUpdating Cells\n~~~~~~~~~~~~~~\n\nUsing `A1 notation <https://developers.google.com/sheets/api/guides/concepts#a1_notation>`_:\n\n.. code:: python\n\n   worksheet.update_acell('B1', 'Bingo!')\n\nOr row and column coordinates:\n\n.. code:: python\n\n   worksheet.update_cell(1, 2, 'Bingo!')\n\nUpdate a range\n\n.. code:: python\n\n   worksheet.update([[1, 2], [3, 4]], 'A1:B2')\n\n\nAdding Data Validation\n~~~~~~~~~~~~~~~~~~~~~~\n\nYou can add a strict validation to a cell.\n\n.. code:: python\n\n   ws.add_validation(\n      'A1',\n      ValidationConditionType.number_greater,\n      [10],\n      strict=True,\n      inputMessage='Value must be greater than 10',\n   )\n \n\nOr add validation with a drop down.\n\n.. code:: python\n   \n   worksheet.add_validation(\n      'C2:C7',\n      ValidationConditionType.one_of_list,\n      ['Yes',\n      'No',]\n      showCustomUi=True\n   )\n\n\nCheck out the api docs for `DataValidationRule`_ and `CondtionType`_ for more details.\n\n.. _CondtionType: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/other#ConditionType\n\n.. _DataValidationRule: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/cells#DataValidationRule\n\nExtract table\n~~~~~~~~~~~~~\n\nGspread provides a function to extract a data table.\nA data table is defined as a rectangular table that stops either on the **first empty** cell or\nthe **enge of the sheet**.\n\nYou can extract table from any address by providing the top left corner of the desired table.\n\nGspread provides 3 directions for searching the end of the table:\n\n   * :attr:`~gspread.utils.TableDirection.right`: extract a single row searching on the right of the starting cell\n   * :attr:`~gspread.utils.TableDirection.down`: extract a single column searching on the bottom of the starting cell\n   * :attr:`~gspread.utils.TableDirection.table`: extract a rectangular table by first searching right from starting cell,\n     then searching down from starting cell.\n\n      .. note::\n\n        Gspread will not look for empty cell inside the table. it only look at the top row and first column.\n\nExample extracting a table from the below sample sheet:\n\n.. list-table:: Find table\n   :header-rows: 1\n\n   * - ID\n     - Name\n     - Universe\n     - Super power\n   * - 1\n     - Batman\n     - DC\n     - Very rich\n   * - 2\n     - DeadPool\n     - Marvel\n     - self healing\n   * - 3\n     - Superman\n     - DC\n     - super human\n   * -\n     - \\-\n     - \\-\n     - \\-\n   * - 5\n     - Lavigne958\n     -\n     - maintains Gspread\n   * - 6\n     - Alifee\n     -\n     - maintains Gspread\n\nUsing the below code will result in rows 2 to 4:\n\n.. code:: python\n\n   worksheet.expand(\"A2\")\n\n   [\n      [\"Batman\", \"DC\", \"Very rich\"],\n      [\"DeadPool\", \"Marvel\", \"self healing\"],\n      [\"Superman\", \"DC\", \"super human\"],\n   ]\n\n\n\nFormatting\n~~~~~~~~~~\n\nHere's an example of basic formatting.\n\nSet **A1:B1** text format to bold:\n\n.. code:: python\n\n   worksheet.format('A1:B1', {'textFormat': {'bold': True}})\n\nColor the background of **A2:B2** cell range in black, change horizontal alignment, text color and font size:\n\n.. code:: python\n\n   worksheet.format(\"A2:B2\", {\n       \"backgroundColor\": {\n         \"red\": 0.0,\n         \"green\": 0.0,\n         \"blue\": 0.0\n       },\n       \"horizontalAlignment\": \"CENTER\",\n       \"textFormat\": {\n         \"foregroundColor\": {\n           \"red\": 1.0,\n           \"green\": 1.0,\n           \"blue\": 1.0\n         },\n         \"fontSize\": 12,\n         \"bold\": True\n       }\n   })\n\nThe 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 <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/cells#cellformat>`_ in Sheet API Reference.\n\n.. Tip::\n    for more complex formatting see :ref:`gspread-formating-label`.\n\n\nUsing gspread with pandas\n~~~~~~~~~~~~~~~~~~~~~~~~~\n\n`pandas <https://pandas.pydata.org/>`_ 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`:\n\n.. code:: python\n\n   import pandas as pd\n\n   dataframe = pd.DataFrame(worksheet.get_all_records())\n\nHere'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:\n\n.. code:: python\n\n   import pandas as pd\n\n   worksheet.update([dataframe.columns.values.tolist()] + dataframe.values.tolist())\n\nFor advanced pandas use cases check out community section :ref:`gspread-pandas-label`\n\nUsing gspread with NumPy\n~~~~~~~~~~~~~~~~~~~~~~~~\n\n`NumPy <https://numpy.org/>`_ is a library for scientific computing in Python. It provides tools for working with high performance multi-dimensional arrays.\n\nRead contents of a sheet into a NumPy array:\n\n.. code:: python\n\n   import numpy as np\n   array = np.array(worksheet.get_all_values())\n\nThe 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:]``.\n\nWrite a NumPy array to a sheet:\n\n.. code:: python\n\n   import numpy as np\n\n   array = np.array([[1, 2, 3], [4, 5, 6]])\n\n   # Write the array to worksheet starting from the A2 cell\n   worksheet.update(array.tolist(), 'A2')\n\n"
  },
  {
    "path": "gspread/__init__.py",
    "content": "\"\"\"Google Spreadsheets Python API\"\"\"\n\n__version__ = \"6.2.1\"\n__author__ = \"Anton Burnashev\"\n\n\nfrom .auth import (\n    api_key,\n    authorize,\n    oauth,\n    oauth_from_dict,\n    service_account,\n    service_account_from_dict,\n)\nfrom .cell import Cell\nfrom .client import Client\nfrom .exceptions import (\n    GSpreadException,\n    IncorrectCellLabel,\n    NoValidUrlKeyFound,\n    SpreadsheetNotFound,\n    WorksheetNotFound,\n)\nfrom .http_client import BackOffHTTPClient, HTTPClient\nfrom .spreadsheet import Spreadsheet\nfrom .worksheet import ValueRange, Worksheet\n\nfrom . import urls as urls\nfrom . import utils as utils\n\n__all__ = [\n    # from .auth\n    \"api_key\",\n    \"authorize\",\n    \"oauth\",\n    \"oauth_from_dict\",\n    \"service_account\",\n    \"service_account_from_dict\",\n\n    # from .cell\n    \"Cell\",\n\n    # from .client\n    \"Client\",\n\n    # from .http_client\n    \"BackOffHTTPClient\",\n    \"HTTPClient\",\n\n    # from .spreadsheet\n    \"Spreadsheet\",\n\n    # from .worksheet\n    \"Worksheet\",\n    \"ValueRange\",\n\n    # from .exceptions\n    \"GSpreadException\",\n    \"IncorrectCellLabel\",\n    \"NoValidUrlKeyFound\",\n    \"SpreadsheetNotFound\",\n    \"WorksheetNotFound\",\n\n    # full module imports\n    \"urls\",\n    \"utils\",\n]\n"
  },
  {
    "path": "gspread/auth.py",
    "content": "\"\"\"\ngspread.auth\n~~~~~~~~~~~~\n\nSimple authentication with OAuth.\n\n\"\"\"\n\nimport json\nimport os\nfrom pathlib import Path\nfrom typing import Any, Dict, Iterable, Mapping, Optional, Protocol, Tuple, Union\n\nfrom google.auth.credentials import Credentials\n\ntry:\n    from google.auth.api_key import Credentials as APIKeyCredentials\n\n    GOOGLE_AUTH_API_KEY_AVAILABLE = True\nexcept ImportError:\n    GOOGLE_AUTH_API_KEY_AVAILABLE = False\nfrom google.oauth2.credentials import Credentials as OAuthCredentials\nfrom google.oauth2.service_account import Credentials as SACredentials\nfrom google_auth_oauthlib.flow import InstalledAppFlow\nfrom requests import Session\n\nfrom .client import Client\nfrom .http_client import HTTPClient, HTTPClientType\n\nDEFAULT_SCOPES = [\n    \"https://www.googleapis.com/auth/spreadsheets\",\n    \"https://www.googleapis.com/auth/drive\",\n]\n\nREADONLY_SCOPES = [\n    \"https://www.googleapis.com/auth/spreadsheets.readonly\",\n    \"https://www.googleapis.com/auth/drive.readonly\",\n]\n\n\ndef get_config_dir(\n    config_dir_name: str = \"gspread\", os_is_windows: bool = os.name == \"nt\"\n) -> Path:\n    r\"\"\"Construct a config dir path.\n\n    By default:\n        * `%APPDATA%\\gspread` on Windows\n        * `~/.config/gspread` everywhere else\n\n    \"\"\"\n    if os_is_windows:\n        return Path(os.environ[\"APPDATA\"], config_dir_name)\n    else:\n        return Path(Path.home(), \".config\", config_dir_name)\n\n\nDEFAULT_CONFIG_DIR = get_config_dir()\n\nDEFAULT_CREDENTIALS_FILENAME = DEFAULT_CONFIG_DIR / \"credentials.json\"\nDEFAULT_AUTHORIZED_USER_FILENAME = DEFAULT_CONFIG_DIR / \"authorized_user.json\"\nDEFAULT_SERVICE_ACCOUNT_FILENAME = DEFAULT_CONFIG_DIR / \"service_account.json\"\n\n\ndef authorize(\n    credentials: Credentials,\n    http_client: HTTPClientType = HTTPClient,\n    session: Optional[Session] = None,\n) -> Client:\n    \"\"\"Login to Google API using OAuth2 credentials.\n    This is a shortcut/helper function which\n    instantiates a client using `http_client`.\n    By default :class:`gspread.HTTPClient` is used (but could also use\n    :class:`gspread.BackOffHTTPClient` to avoid rate limiting).\n\n    It can take an additional `requests.Session` object in order to provide\n    you own session object.\n\n    .. note::\n\n       When providing your own `requests.Session` object,\n       use the value `None` as `credentials`.\n\n    :returns: An instance of the class produced by `http_client`.\n    :rtype: :class:`gspread.client.Client`\n    \"\"\"\n\n    return Client(auth=credentials, session=session, http_client=http_client)\n\n\nclass FlowCallable(Protocol):\n    \"\"\"Protocol for OAuth flow callables.\"\"\"\n\n    def __call__(\n        self, client_config: Mapping[str, Any], scopes: Iterable[str], port: int = 0\n    ) -> OAuthCredentials: ...\n\n\ndef local_server_flow(\n    client_config: Mapping[str, Any], scopes: Iterable[str], port: int = 0\n) -> OAuthCredentials:\n    \"\"\"Run an OAuth flow using a local server strategy.\n\n    Creates an OAuth flow and runs `google_auth_oauthlib.flow.InstalledAppFlow.run_local_server <https://google-auth-oauthlib.readthedocs.io/en/latest/reference/google_auth_oauthlib.flow.html#google_auth_oauthlib.flow.InstalledAppFlow.run_local_server>`_.\n    This will start a local web server and open the authorization URL in\n    the user's browser.\n\n    Pass this function to ``flow`` parameter of :meth:`~gspread.oauth` to run\n    a local server flow.\n    \"\"\"\n    flow = InstalledAppFlow.from_client_config(client_config, scopes)\n    return flow.run_local_server(port=port)\n\n\ndef load_credentials(\n    filename: Path = DEFAULT_AUTHORIZED_USER_FILENAME,\n) -> Optional[Credentials]:\n    if filename.exists():\n        return OAuthCredentials.from_authorized_user_file(filename)\n\n    return None\n\n\ndef store_credentials(\n    creds: OAuthCredentials,\n    filename: Path = DEFAULT_AUTHORIZED_USER_FILENAME,\n    strip: str = \"token\",\n) -> None:\n    filename.parent.mkdir(parents=True, exist_ok=True)\n    with filename.open(\"w\") as f:\n        f.write(creds.to_json(strip))\n\n\ndef oauth(\n    scopes: Iterable[str] = DEFAULT_SCOPES,\n    flow: FlowCallable = local_server_flow,\n    credentials_filename: Union[str, Path] = DEFAULT_CREDENTIALS_FILENAME,\n    authorized_user_filename: Union[str, Path] = DEFAULT_AUTHORIZED_USER_FILENAME,\n    http_client: HTTPClientType = HTTPClient,\n) -> Client:\n    r\"\"\"Authenticate with OAuth Client ID.\n\n    By default this function will use the local server strategy and open\n    the authorization URL in the user's browser::\n\n        gc = gspread.oauth()\n\n    Another option is to run a console strategy. This way, the user is\n    instructed to open the authorization URL in their browser. Once the\n    authorization is complete, the user must then copy & paste the\n    authorization code into the application::\n\n        gc = gspread.oauth(flow=gspread.auth.console_flow)\n\n\n    ``scopes`` parameter defaults to read/write scope available in\n    ``gspread.auth.DEFAULT_SCOPES``. It's read/write for Sheets\n    and Drive API::\n\n        DEFAULT_SCOPES =[\n            'https://www.googleapis.com/auth/spreadsheets',\n            'https://www.googleapis.com/auth/drive'\n        ]\n\n    You can also use ``gspread.auth.READONLY_SCOPES`` for read only access.\n    Obviously any method of ``gspread`` that updates a spreadsheet\n    **will not work** in this case::\n\n        gc = gspread.oauth(scopes=gspread.auth.READONLY_SCOPES)\n\n        sh = gc.open(\"A spreadsheet\")\n        sh.sheet1.update_acell('A1', '42')   # <-- this will not work\n\n    If you're storing your user credentials in a place other than the\n    default, you may provide a path to that file like so::\n\n        gc = gspread.oauth(\n            credentials_filename='/alternative/path/credentials.json',\n            authorized_user_filename='/alternative/path/authorized_user.json',\n        )\n\n    :param list scopes: The scopes used to obtain authorization.\n    :param function flow: OAuth flow to use for authentication.\n        Defaults to :meth:`~gspread.auth.local_server_flow`\n    :param str credentials_filename: Filepath (including name) pointing to a\n        credentials `.json` file.\n        Defaults to DEFAULT_CREDENTIALS_FILENAME:\n\n            * `%APPDATA%\\gspread\\credentials.json` on Windows\n            * `~/.config/gspread/credentials.json` everywhere else\n    :param str authorized_user_filename: Filepath (including name) pointing to\n        an authorized user `.json` file.\n        Defaults to DEFAULT_AUTHORIZED_USER_FILENAME:\n\n            * `%APPDATA%\\gspread\\authorized_user.json` on Windows\n            * `~/.config/gspread/authorized_user.json` everywhere else\n    :type http_client: :class:`gspread.http_client.HTTPClient`\n    :param http_client: A factory function that returns a client class.\n        Defaults to :class:`gspread.http_client.HTTPClient` (but could also use\n        :class:`gspread.http_client.BackOffHTTPClient` to avoid rate limiting)\n\n    :rtype: :class:`gspread.client.Client`\n    \"\"\"\n\n    authorized_user_filename = Path(authorized_user_filename)\n    creds = load_credentials(filename=authorized_user_filename)\n\n    if not isinstance(creds, Credentials):\n        with open(credentials_filename) as json_file:\n            client_config = json.load(json_file)\n        creds = flow(client_config=client_config, scopes=scopes)\n        store_credentials(creds, filename=authorized_user_filename)\n\n    return Client(auth=creds, http_client=http_client)\n\n\ndef oauth_from_dict(\n    credentials: Optional[Mapping[str, Any]] = None,\n    authorized_user_info: Optional[Mapping[str, Any]] = None,\n    scopes: Iterable[str] = DEFAULT_SCOPES,\n    flow: FlowCallable = local_server_flow,\n    http_client: HTTPClientType = HTTPClient,\n) -> Tuple[Client, Dict[str, Any]]:\n    r\"\"\"Authenticate with OAuth Client ID.\n\n    By default this function will use the local server strategy and open\n    the authorization URL in the user's browser::\n\n        gc = gspread.oauth_from_dict()\n\n    Another option is to run a console strategy. This way, the user is\n    instructed to open the authorization URL in their browser. Once the\n    authorization is complete, the user must then copy & paste the\n    authorization code into the application::\n\n        gc = gspread.oauth_from_dict(flow=gspread.auth.console_flow)\n\n\n    ``scopes`` parameter defaults to read/write scope available in\n    ``gspread.auth.DEFAULT_SCOPES``. It's read/write for Sheets\n    and Drive API::\n\n        DEFAULT_SCOPES =[\n            'https://www.googleapis.com/auth/spreadsheets',\n            'https://www.googleapis.com/auth/drive'\n        ]\n\n    You can also use ``gspread.auth.READONLY_SCOPES`` for read only access.\n    Obviously any method of ``gspread`` that updates a spreadsheet\n    **will not work** in this case::\n\n        gc = gspread.oauth_from_dict(scopes=gspread.auth.READONLY_SCOPES)\n\n        sh = gc.open(\"A spreadsheet\")\n        sh.sheet1.update_acell('A1', '42')   # <-- this will not work\n\n    This function requires you to pass the credentials directly as\n    a python dict. After the first authentication the function returns\n    the authenticated user info, this can be passed again to authenticate\n    the user without the need to run the flow again.\n\n    ..\n        code block below must be explicitly announced using code-block\n\n    .. code-block:: python\n\n        gc = gspread.oauth_from_dict(\n                credentials=my_creds,\n                authorized_user_info=my_auth_user\n        )\n\n    :param dict credentials: The credentials from google cloud platform\n    :param dict authorized_user_info: The authenticated user\n        if already authenticated.\n    :param list scopes: The scopes used to obtain authorization.\n    :param function flow: OAuth flow to use for authentication.\n        Defaults to :meth:`~gspread.auth.local_server_flow`\n    :type http_client: :class:`gspread.http_client.HTTPClient`\n    :param http_client: A factory function that returns a client class.\n        Defaults to :class:`gspread.http_client.HTTPClient` (but could also use\n        :class:`gspread.http_client.BackOffHTTPClient` to avoid rate limiting)\n\n    :rtype: (:class:`gspread.client.Client`, str)\n    \"\"\"\n\n    if authorized_user_info is not None:\n        creds = OAuthCredentials.from_authorized_user_info(authorized_user_info, scopes)\n    elif credentials is not None:\n        creds = flow(client_config=credentials, scopes=scopes)\n    else:\n        raise ValueError(\"no credentials object supplied\")\n\n    client = Client(auth=creds, http_client=http_client)\n\n    # must return the creds to the user\n    # must strip the token an use the dedicated method from Credentials\n    # to return a dict \"safe to store\".\n    return (client, creds.to_json(\"token\"))\n\n\ndef service_account(\n    filename: Union[Path, str] = DEFAULT_SERVICE_ACCOUNT_FILENAME,\n    scopes: Iterable[str] = DEFAULT_SCOPES,\n    http_client: HTTPClientType = HTTPClient,\n) -> Client:\n    \"\"\"Authenticate using a service account.\n\n    ``scopes`` parameter defaults to read/write scope available in\n    ``gspread.auth.DEFAULT_SCOPES``. It's read/write for Sheets\n    and Drive API::\n\n        DEFAULT_SCOPES =[\n            'https://www.googleapis.com/auth/spreadsheets',\n            'https://www.googleapis.com/auth/drive'\n        ]\n\n    You can also use ``gspread.auth.READONLY_SCOPES`` for read only access.\n    Obviously any method of ``gspread`` that updates a spreadsheet\n    **will not work** in this case.\n\n    :param str filename: The path to the service account json file.\n    :param list scopes: The scopes used to obtain authorization.\n    :type http_client: :class:`gspread.http_client.HTTPClient`\n    :param http_client: A factory function that returns a client class.\n        Defaults to :class:`gspread.HTTPClient` (but could also use\n        :class:`gspread.BackOffHTTPClient` to avoid rate limiting)\n\n    :rtype: :class:`gspread.client.Client`\n    \"\"\"\n    creds = SACredentials.from_service_account_file(filename, scopes=scopes)\n    return Client(auth=creds, http_client=http_client)\n\n\ndef service_account_from_dict(\n    info: Mapping[str, Any],\n    scopes: Iterable[str] = DEFAULT_SCOPES,\n    http_client: HTTPClientType = HTTPClient,\n) -> Client:\n    \"\"\"Authenticate using a service account (json).\n\n    ``scopes`` parameter defaults to read/write scope available in\n    ``gspread.auth.DEFAULT_SCOPES``. It's read/write for Sheets\n    and Drive API::\n\n        DEFAULT_SCOPES =[\n            'https://www.googleapis.com/auth/spreadsheets',\n            'https://www.googleapis.com/auth/drive'\n        ]\n\n    You can also use ``gspread.auth.READONLY_SCOPES`` for read only access.\n    Obviously any method of ``gspread`` that updates a spreadsheet\n    **will not work** in this case.\n\n    :param info (Mapping[str, str]): The service account info in Google format\n    :param list scopes: The scopes used to obtain authorization.\n    :type http_client: :class:`gspread.http_client.HTTPClient`\n    :param http_client: A factory function that returns a client class.\n        Defaults to :class:`gspread.http_client.HTTPClient` (but could also use\n        :class:`gspread.http_client.BackOffHTTPClient` to avoid rate limiting)\n\n    :rtype: :class:`gspread.client.Client`\n    \"\"\"\n    creds = SACredentials.from_service_account_info(\n        info=info,\n        scopes=scopes,\n    )\n    return Client(auth=creds, http_client=http_client)\n\n\ndef api_key(token: str, http_client: HTTPClientType = HTTPClient) -> Client:\n    \"\"\"Authenticate using an API key.\n\n    Allows you to open public spreadsheet files.\n\n    .. warning::\n\n       This method only allows you to open public spreadsheet files.\n       It does not work for private spreadsheet files.\n\n    :param token str: The actual API key to use\n    :type http_client: :class:`gspread.http_client.HTTPClient`\n    :param http_client: A factory function that returns a client class.\n        Defaults to :class:`gspread.http_client.HTTPClient` (but could also use\n        :class:`gspread.http_client.BackOffHTTPClient` to avoid rate limiting)\n\n    :rtype: :class:`gspread.client.Client`\n\n    \"\"\"\n    if GOOGLE_AUTH_API_KEY_AVAILABLE is False:\n        raise NotImplementedError(\n            \"api_key is only available with package google.auth>=2.15.0. \"\n            'Install it with \"pip install google-auth>=2.15.0\".'\n        )\n    creds = APIKeyCredentials(token)\n    return Client(auth=creds, http_client=http_client)\n"
  },
  {
    "path": "gspread/cell.py",
    "content": "\"\"\"\ngspread.cell\n~~~~~~~~~~~~\n\nThis module contains common cells' models.\n\n\"\"\"\n\nfrom typing import Optional, Union\n\nfrom .utils import a1_to_rowcol, numericise, rowcol_to_a1\n\n\nclass Cell:\n    \"\"\"An instance of this class represents a single cell\n    in a :class:`~gspread.worksheet.Worksheet`.\n    \"\"\"\n\n    def __init__(self, row: int, col: int, value: Optional[str] = \"\") -> None:\n        self._row: int = row\n        self._col: int = col\n\n        #: Value of the cell.\n        self.value: Optional[str] = value\n\n    @classmethod\n    def from_address(cls, label: str, value: str = \"\") -> \"Cell\":\n        \"\"\"Instantiate a new :class:`~gspread.cell.Cell`\n        from an A1 notation address and a value\n\n        :param string label: the A1 label of the returned cell\n        :param string value: the value for the returned cell\n        :rtype: Cell\n        \"\"\"\n        row, col = a1_to_rowcol(label)\n        return cls(row, col, value)\n\n    def __repr__(self) -> str:\n        return \"<{} R{}C{} {}>\".format(\n            self.__class__.__name__,\n            self.row,\n            self.col,\n            repr(self.value),\n        )\n\n    def __eq__(self, other: object) -> bool:\n        if not isinstance(other, Cell):\n            return False\n\n        same_row = self.row == other.row\n        same_col = self.col == other.col\n        same_value = self.value == other.value\n        return same_row and same_col and same_value\n\n    @property\n    def row(self) -> int:\n        \"\"\"Row number of the cell.\n\n        :type: int\n        \"\"\"\n        return self._row\n\n    @property\n    def col(self) -> int:\n        \"\"\"Column number of the cell.\n\n        :type: int\n        \"\"\"\n        return self._col\n\n    @property\n    def numeric_value(self) -> Optional[Union[int, float]]:\n        \"\"\"Numeric value of this cell.\n\n        Will try to numericise this cell value,\n        upon success will return its numeric value\n        with the appropriate type.\n\n        :type: int or float\n        \"\"\"\n        numeric_value = numericise(self.value, default_blank=None)\n\n        # if could not convert, return None\n        if isinstance(numeric_value, int) or isinstance(numeric_value, float):\n            return numeric_value\n        else:\n            return None\n\n    @property\n    def address(self) -> str:\n        \"\"\"Cell address in A1 notation.\n\n        :type: str\n        \"\"\"\n        return rowcol_to_a1(self.row, self.col)\n"
  },
  {
    "path": "gspread/client.py",
    "content": "\"\"\"\ngspread.client\n~~~~~~~~~~~~~~\n\nThis module contains Client class responsible for managing spreadsheet files\n\n\"\"\"\n\nfrom datetime import datetime\nfrom http import HTTPStatus\nfrom typing import Any, Dict, List, Optional, Tuple, Union\n\nfrom google.auth.credentials import Credentials\nfrom requests import Response, Session\n\nfrom .exceptions import APIError, SpreadsheetNotFound\nfrom .http_client import HTTPClient, HTTPClientType, ParamsType\nfrom .spreadsheet import Spreadsheet\nfrom .urls import DRIVE_FILES_API_V3_COMMENTS_URL, DRIVE_FILES_API_V3_URL\nfrom .utils import ExportFormat, MimeType, extract_id_from_url, finditem\n\n\nclass Client:\n    \"\"\"An instance of this class Manages Spreadsheet files\n\n    It is used to:\n        - open/create/list/delete spreadsheets\n        - create/delete/list spreadsheet permission\n        - etc\n\n    It is the gspread entry point.\n    It will handle creating necessary :class:`~gspread.models.Spreadsheet` instances.\n    \"\"\"\n\n    def __init__(\n        self,\n        auth: Credentials,\n        session: Optional[Session] = None,\n        http_client: HTTPClientType = HTTPClient,\n    ) -> None:\n        self.http_client = http_client(auth, session)\n\n    @property\n    def expiry(self) -> Optional[datetime]:\n        \"\"\"Returns the expiry date of the curenlty loaded credentials\n\n        :returns: (optional) datetime the expiry date time object.\n\n        .. note::\n\n           It only applies to gspread client created using oauth\n        \"\"\"\n        return self.http_client.auth.expiry\n\n    def set_timeout(\n        self, timeout: Optional[Union[float, Tuple[float, float]]] = None\n    ) -> None:\n        \"\"\"How long to wait for the server to send\n        data before giving up, as a float, or a ``(connect timeout,\n        read timeout)`` tuple.\n\n        Use value ``None`` to restore default timeout\n\n        Value for ``timeout`` is in seconds (s).\n        \"\"\"\n        self.http_client.set_timeout(timeout)\n\n    def get_file_drive_metadata(self, id: str) -> Any:\n        \"\"\"Get the metadata from the Drive API for a specific file\n        This method is mainly here to retrieve the create/update time\n        of a file (these metadata are only accessible from the Drive API).\n        \"\"\"\n        return self.http_client.get_file_drive_metadata(id)\n\n    def list_spreadsheet_files(\n        self, title: Optional[str] = None, folder_id: Optional[str] = None\n    ) -> List[Dict[str, Any]]:\n        \"\"\"List all the spreadsheet files\n\n        Will list all spreadsheet files owned by/shared with this user account.\n\n        :param str title: Filter only spreadsheet files with this title\n        :param str folder_id: Only look for spreadsheet files in this folder\n            The parameter ``folder_id`` can be obtained from the URL when looking at\n            a folder in a web browser as follow:\n            ``https://drive.google.com/drive/u/0/folders/<folder_id>``\n\n        :returns: a list of dicts containing the keys id, name, createdTime and modifiedTime.\n        \"\"\"\n        files, _ = self._list_spreadsheet_files(title=title, folder_id=folder_id)\n        return files\n\n    def _list_spreadsheet_files(\n        self, title: Optional[str] = None, folder_id: Optional[str] = None\n    ) -> Tuple[List[Dict[str, Any]], Response]:\n        files = []\n        page_token = \"\"\n        url = DRIVE_FILES_API_V3_URL\n\n        query = f'mimeType=\"{MimeType.google_sheets}\"'\n        if title:\n            query += f' and name = \"{title}\"'\n        if folder_id:\n            query += f' and parents in \"{folder_id}\"'\n\n        params: ParamsType = {\n            \"q\": query,\n            \"pageSize\": 1000,\n            \"supportsAllDrives\": True,\n            \"includeItemsFromAllDrives\": True,\n            \"fields\": \"kind,nextPageToken,files(id,name,createdTime,modifiedTime)\",\n        }\n\n        while True:\n            if page_token:\n                params[\"pageToken\"] = page_token\n\n            response = self.http_client.request(\"get\", url, params=params)\n            response_json = response.json()\n            files.extend(response_json[\"files\"])\n\n            page_token = response_json.get(\"nextPageToken\", None)\n\n            if page_token is None:\n                break\n\n        return files, response\n\n    def open(self, title: str, folder_id: Optional[str] = None) -> Spreadsheet:\n        \"\"\"Opens a spreadsheet.\n\n        :param str title: A title of a spreadsheet.\n        :param str folder_id: (optional) If specified can be used to filter\n            spreadsheets by parent folder ID.\n        :returns: a :class:`~gspread.models.Spreadsheet` instance.\n\n        If there's more than one spreadsheet with same title the first one\n        will be opened.\n\n        :raises gspread.SpreadsheetNotFound: if no spreadsheet with\n                                             specified `title` is found.\n\n        >>> gc.open('My fancy spreadsheet')\n        \"\"\"\n        spreadsheet_files, response = self._list_spreadsheet_files(title, folder_id)\n        try:\n            properties = finditem(\n                lambda x: x[\"name\"] == title,\n                spreadsheet_files,\n            )\n        except StopIteration as ex:\n            raise SpreadsheetNotFound(response) from ex\n\n        # Drive uses different terminology\n        properties[\"title\"] = properties[\"name\"]\n\n        return Spreadsheet(self.http_client, properties)\n\n    def open_by_key(self, key: str) -> Spreadsheet:\n        \"\"\"Opens a spreadsheet specified by `key` (a.k.a Spreadsheet ID).\n\n        :param str key: A key of a spreadsheet as it appears in a URL in a browser.\n        :returns: a :class:`~gspread.models.Spreadsheet` instance.\n\n        >>> gc.open_by_key('0BmgG6nO_6dprdS1MN3d3MkdPa142WFRrdnRRUWl1UFE')\n        \"\"\"\n        try:\n            spreadsheet = Spreadsheet(self.http_client, {\"id\": key})\n        except APIError as ex:\n            if ex.response.status_code == HTTPStatus.NOT_FOUND:\n                raise SpreadsheetNotFound(ex.response) from ex\n            if ex.response.status_code == HTTPStatus.FORBIDDEN:\n                raise PermissionError from ex\n            raise ex\n        return spreadsheet\n\n    def open_by_url(self, url: str) -> Spreadsheet:\n        \"\"\"Opens a spreadsheet specified by `url`.\n\n        :param str url: URL of a spreadsheet as it appears in a browser.\n\n        :returns: a :class:`~gspread.models.Spreadsheet` instance.\n\n        :raises gspread.SpreadsheetNotFound: if no spreadsheet with\n                                             specified `url` is found.\n\n        >>> gc.open_by_url('https://docs.google.com/spreadsheet/ccc?key=0Bm...FE&hl')\n        \"\"\"\n        return self.open_by_key(extract_id_from_url(url))\n\n    def openall(self, title: Optional[str] = None) -> List[Spreadsheet]:\n        \"\"\"Opens all available spreadsheets.\n\n        :param str title: (optional) If specified can be used to filter\n            spreadsheets by title.\n\n        :returns: a list of :class:`~gspread.models.Spreadsheet` instances.\n        \"\"\"\n        spreadsheet_files = self.list_spreadsheet_files(title)\n\n        if title:\n            spreadsheet_files = [\n                spread for spread in spreadsheet_files if title == spread[\"name\"]\n            ]\n\n        return [\n            Spreadsheet(self.http_client, dict(title=x[\"name\"], **x))\n            for x in spreadsheet_files\n        ]\n\n    def create(self, title: str, folder_id: Optional[str] = None) -> Spreadsheet:\n        \"\"\"Creates a new spreadsheet.\n\n        :param str title: A title of a new spreadsheet.\n\n        :param str folder_id: Id of the folder where we want to save\n            the spreadsheet.\n\n        :returns: a :class:`~gspread.models.Spreadsheet` instance.\n\n        \"\"\"\n        payload: Dict[str, Any] = {\n            \"name\": title,\n            \"mimeType\": MimeType.google_sheets,\n        }\n\n        params: ParamsType = {\n            \"supportsAllDrives\": True,\n        }\n\n        if folder_id is not None:\n            payload[\"parents\"] = [folder_id]\n\n        r = self.http_client.request(\n            \"post\", DRIVE_FILES_API_V3_URL, json=payload, params=params\n        )\n        spreadsheet_id = r.json()[\"id\"]\n        return self.open_by_key(spreadsheet_id)\n\n    def export(self, file_id: str, format: str = ExportFormat.PDF) -> bytes:\n        \"\"\"Export the spreadsheet in the given format.\n\n        :param str file_id: The key of the spreadsheet to export\n\n        :param str format: The format of the resulting file.\n            Possible values are:\n\n                * ``ExportFormat.PDF``\n                * ``ExportFormat.EXCEL``\n                * ``ExportFormat.CSV``\n                * ``ExportFormat.OPEN_OFFICE_SHEET``\n                * ``ExportFormat.TSV``\n                * ``ExportFormat.ZIPPED_HTML``\n\n            See `ExportFormat`_ in the Drive API.\n\n        :type format: :class:`~gspread.utils.ExportFormat`\n\n        :returns bytes: The content of the exported file.\n\n        .. _ExportFormat: https://developers.google.com/drive/api/guides/ref-export-formats\n        \"\"\"\n\n        return self.http_client.export(file_id=file_id, format=format)\n\n    def copy(\n        self,\n        file_id: str,\n        title: Optional[str] = None,\n        copy_permissions: bool = False,\n        folder_id: Optional[str] = None,\n        copy_comments: bool = True,\n    ) -> Spreadsheet:\n        \"\"\"Copies a spreadsheet.\n\n        :param str file_id: A key of a spreadsheet to copy.\n        :param str title: (optional) A title for the new spreadsheet.\n\n        :param bool copy_permissions: (optional) If True, copy permissions from\n            the original spreadsheet to the new spreadsheet.\n\n        :param str folder_id: Id of the folder where we want to save\n            the spreadsheet.\n\n        :param bool copy_comments: (optional) If True, copy the comments from\n            the original spreadsheet to the new spreadsheet.\n\n        :returns: a :class:`~gspread.models.Spreadsheet` instance.\n\n        .. versionadded:: 3.1.0\n\n        .. note::\n\n           If you're using custom credentials without the Drive scope, you need to add\n           ``https://www.googleapis.com/auth/drive`` to your OAuth scope in order to use\n           this method.\n\n           Example::\n\n              scope = [\n                  'https://www.googleapis.com/auth/spreadsheets',\n                  'https://www.googleapis.com/auth/drive'\n              ]\n\n           Otherwise, you will get an ``Insufficient Permission`` error\n           when you try to copy a spreadsheet.\n\n        \"\"\"\n        url = \"{}/{}/copy\".format(DRIVE_FILES_API_V3_URL, file_id)\n\n        payload: Dict[str, Any] = {\n            \"name\": title,\n            \"mimeType\": MimeType.google_sheets,\n        }\n\n        if folder_id is not None:\n            payload[\"parents\"] = [folder_id]\n\n        params: ParamsType = {\"supportsAllDrives\": True}\n        r = self.http_client.request(\"post\", url, json=payload, params=params)\n        spreadsheet_id = r.json()[\"id\"]\n\n        new_spreadsheet = self.open_by_key(spreadsheet_id)\n\n        if copy_permissions is True:\n            original = self.open_by_key(file_id)\n\n            permissions = original.list_permissions()\n            for p in permissions:\n                if p.get(\"deleted\"):\n                    continue\n\n                # In case of domain type the domain extract the domain\n                # In case of user/group extract the emailAddress\n                # Otherwise use None for type 'Anyone'\n\n                email_or_domain = \"\"\n                if str(p[\"type\"]) == \"domain\":\n                    email_or_domain = str(p[\"domain\"])\n                elif str(p[\"type\"]) in (\"user\", \"group\"):\n                    email_or_domain = str(p[\"emailAddress\"])\n\n                new_spreadsheet.share(\n                    email_address=email_or_domain,\n                    perm_type=str(p[\"type\"]),\n                    role=str(p[\"role\"]),\n                    notify=False,\n                )\n\n        if copy_comments is True:\n            source_url = DRIVE_FILES_API_V3_COMMENTS_URL % (file_id)\n            page_token = \"\"\n            comments = []\n            params = {\n                \"fields\": \"comments/content,comments/anchor,nextPageToken\",\n                \"includeDeleted\": False,\n                \"pageSize\": 100,  # API limit to maximum 100\n            }\n\n            while page_token is not None:\n                params[\"pageToken\"] = page_token\n                res = self.http_client.request(\"get\", source_url, params=params).json()\n\n                comments.extend(res[\"comments\"])\n                page_token = res.get(\"nextPageToken\", None)\n\n            destination_url = DRIVE_FILES_API_V3_COMMENTS_URL % (new_spreadsheet.id)\n            # requesting some fields in the response is mandatory from the API.\n            # choose 'id' randomly out of all the fields, but no need to use it for now.\n            params = {\"fields\": \"id\"}\n            for comment in comments:\n                self.http_client.request(\n                    \"post\", destination_url, json=comment, params=params\n                )\n\n        return new_spreadsheet\n\n    def del_spreadsheet(self, file_id: str) -> None:\n        \"\"\"Deletes a spreadsheet.\n\n        :param str file_id: a spreadsheet ID (a.k.a file ID).\n        \"\"\"\n        url = \"{}/{}\".format(DRIVE_FILES_API_V3_URL, file_id)\n\n        params: ParamsType = {\"supportsAllDrives\": True}\n        self.http_client.request(\"delete\", url, params=params)\n\n    def import_csv(self, file_id: str, data: Union[str, bytes]) -> Any:\n        \"\"\"Imports data into the first page of the spreadsheet.\n\n        :param str file_id:\n        :param str data: A CSV string of data.\n\n        Example:\n\n        .. code::\n\n            # Read CSV file contents\n            content = open('file_to_import.csv', 'r').read()\n\n            gc.import_csv(spreadsheet.id, content)\n\n        .. note::\n\n           This method removes all other worksheets and then entirely\n           replaces the contents of the first worksheet.\n\n        \"\"\"\n        return self.http_client.import_csv(file_id, data)\n\n    def list_permissions(self, file_id: str) -> List[Dict[str, Union[str, bool]]]:\n        \"\"\"Retrieve a list of permissions for a file.\n\n        :param str file_id: a spreadsheet ID (aka file ID).\n        \"\"\"\n        return self.http_client.list_permissions(file_id)\n\n    def insert_permission(\n        self,\n        file_id: str,\n        value: Optional[str] = None,\n        perm_type: Optional[str] = None,\n        role: Optional[str] = None,\n        notify: bool = True,\n        email_message: Optional[str] = None,\n        with_link: bool = False,\n    ) -> Response:\n        \"\"\"Creates a new permission for a file.\n\n        :param str file_id: a spreadsheet ID (aka file ID).\n        :param value: user or group e-mail address, domain name\n            or None for 'anyone' type.\n        :type value: str, None\n        :param str perm_type: (optional) The account type.\n            Allowed values are: ``user``, ``group``, ``domain``, ``anyone``\n        :param str role: (optional) The primary role for this user.\n            Allowed values are: ``owner``, ``writer``, ``reader``\n        :param bool notify: (optional) Whether to send an email to the target\n            user/domain.\n        :param str email_message: (optional) An email message to be sent\n            if ``notify=True``.\n        :param bool with_link: (optional) Whether the link is required for this\n            permission to be active.\n\n        :returns dict: the newly created permission\n\n        Examples::\n\n            # Give write permissions to otto@example.com\n\n            gc.insert_permission(\n                '0BmgG6nO_6dprnRRUWl1UFE',\n                'otto@example.org',\n                perm_type='user',\n                role='writer'\n            )\n\n            # Make the spreadsheet publicly readable\n\n            gc.insert_permission(\n                '0BmgG6nO_6dprnRRUWl1UFE',\n                None,\n                perm_type='anyone',\n                role='reader'\n            )\n\n        \"\"\"\n        return self.http_client.insert_permission(\n            file_id, value, perm_type, role, notify, email_message, with_link\n        )\n\n    def remove_permission(self, file_id: str, permission_id: str) -> None:\n        \"\"\"Deletes a permission from a file.\n\n        :param str file_id: a spreadsheet ID (aka file ID.)\n        :param str permission_id: an ID for the permission.\n        \"\"\"\n        self.http_client.remove_permission(file_id, permission_id)\n"
  },
  {
    "path": "gspread/exceptions.py",
    "content": "\"\"\"\ngspread.exceptions\n~~~~~~~~~~~~~~~~~~\n\nExceptions used in gspread.\n\n\"\"\"\n\nfrom typing import Any, Mapping\n\nfrom requests import Response\n\n\nclass UnSupportedExportFormat(Exception):\n    \"\"\"Raised when export format is not supported.\"\"\"\n\n\nclass GSpreadException(Exception):\n    \"\"\"A base class for gspread's exceptions.\"\"\"\n\n\nclass WorksheetNotFound(GSpreadException):\n    \"\"\"Trying to open non-existent or inaccessible worksheet.\"\"\"\n\n\nclass NoValidUrlKeyFound(GSpreadException):\n    \"\"\"No valid key found in URL.\"\"\"\n\n\nclass IncorrectCellLabel(GSpreadException):\n    \"\"\"The cell label is incorrect.\"\"\"\n\n\nclass InvalidInputValue(GSpreadException):\n    \"\"\"The provided values is incorrect.\"\"\"\n\n\nclass APIError(GSpreadException):\n    \"\"\"Errors coming from the API itself,\n    such as when we attempt to retrieve things that don't exist.\"\"\"\n\n    def __init__(self, response: Response):\n        try:\n            error = response.json()[\"error\"]\n        except Exception as e:\n            # in case we failed to parse the error from the API\n            # build an empty error object to notify the caller\n            # and keep the exception raise flow running\n\n            error = {\n                \"code\": -1,\n                \"message\": response.text,\n                \"status\": \"invalid JSON: '{}'\".format(e),\n            }\n\n        super().__init__(error)\n        self.response: Response = response\n        self.error: Mapping[str, Any] = error\n        self.code: int = self.error[\"code\"]\n\n    def __str__(self) -> str:\n        return \"{}: [{}]: {}\".format(\n            self.__class__.__name__, self.code, self.error[\"message\"]\n        )\n\n    def __repr__(self) -> str:\n        return self.__str__()\n\n    def __reduce__(self) -> tuple:\n        return self.__class__, (self.response,)\n\n\nclass SpreadsheetNotFound(GSpreadException):\n    \"\"\"Trying to open non-existent or inaccessible spreadsheet.\"\"\"\n"
  },
  {
    "path": "gspread/http_client.py",
    "content": "\"\"\"\ngspread.http_client\n~~~~~~~~~~~~~~\n\nThis module contains HTTPClient class responsible for communicating with\nGoogle API.\n\n\"\"\"\n\nimport time\nfrom http import HTTPStatus\nfrom typing import (\n    IO,\n    Any,\n    Dict,\n    List,\n    Mapping,\n    MutableMapping,\n    Optional,\n    Tuple,\n    Type,\n    Union,\n)\n\nfrom google.auth.credentials import Credentials\nfrom google.auth.exceptions import RefreshError\nfrom google.auth.transport.requests import AuthorizedSession\nfrom requests import Response, Session\n\nfrom .exceptions import APIError, UnSupportedExportFormat\nfrom .urls import (\n    DRIVE_FILES_API_V3_URL,\n    DRIVE_FILES_UPLOAD_API_V2_URL,\n    SPREADSHEET_BATCH_UPDATE_URL,\n    SPREADSHEET_SHEETS_COPY_TO_URL,\n    SPREADSHEET_URL,\n    SPREADSHEET_VALUES_APPEND_URL,\n    SPREADSHEET_VALUES_BATCH_CLEAR_URL,\n    SPREADSHEET_VALUES_BATCH_UPDATE_URL,\n    SPREADSHEET_VALUES_BATCH_URL,\n    SPREADSHEET_VALUES_CLEAR_URL,\n    SPREADSHEET_VALUES_URL,\n)\nfrom .utils import ExportFormat, convert_credentials, quote\n\nParamsType = MutableMapping[str, Optional[Union[str, int, bool, float, List[str]]]]\n\nFileType = Optional[\n    Union[\n        MutableMapping[str, IO[Any]],\n        MutableMapping[str, Tuple[str, IO[Any]]],\n        MutableMapping[str, Tuple[str, IO[Any], str]],\n        MutableMapping[str, Tuple[str, IO[Any], str, MutableMapping[str, str]]],\n    ]\n]\n\n\nclass HTTPClient:\n    \"\"\"An instance of this class communicates with Google API.\n\n    :param Credentials auth: An instance of google.auth.Credentials used to authenticate requests\n        created by either:\n\n        * gspread.auth.oauth()\n        * gspread.auth.oauth_from_dict()\n        * gspread.auth.service_account()\n        * gspread.auth.service_account_from_dict()\n\n    :param Session session: (Optional) An OAuth2 credential object. Credential objects\n        created by `google-auth <https://github.com/googleapis/google-auth-library-python>`_.\n\n        You can pass you own Session object, simply pass ``auth=None`` and ``session=my_custom_session``.\n\n    This class is not intended to be created manually.\n    It will be created by the gspread.Client class.\n    \"\"\"\n\n    def __init__(self, auth: Credentials, session: Optional[Session] = None) -> None:\n        if session is not None:\n            self.session = session\n        else:\n            self.auth: Credentials = convert_credentials(auth)\n            self.session = AuthorizedSession(self.auth)\n\n        self.timeout: Optional[Union[float, Tuple[float, float]]] = None\n\n    def login(self) -> None:\n        from google.auth.transport.requests import Request\n\n        self.auth.refresh(Request(self.session))\n\n        self.session.headers.update({\"Authorization\": \"Bearer %s\" % self.auth.token})\n\n    def set_timeout(self, timeout: Optional[Union[float, Tuple[float, float]]]) -> None:\n        \"\"\"How long to wait for the server to send\n        data before giving up, as a float, or a ``(connect timeout,\n        read timeout)`` tuple.\n\n        Use value ``None`` to restore default timeout\n\n        Value for ``timeout`` is in seconds (s).\n        \"\"\"\n        self.timeout = timeout\n\n    def request(\n        self,\n        method: str,\n        endpoint: str,\n        params: Optional[ParamsType] = None,\n        data: Optional[bytes] = None,\n        json: Optional[Mapping[str, Any]] = None,\n        files: FileType = None,\n        headers: Optional[MutableMapping[str, str]] = None,\n    ) -> Response:\n        response = self.session.request(\n            method=method,\n            url=endpoint,\n            json=json,\n            params=params,\n            data=data,\n            files=files,\n            headers=headers,\n            timeout=self.timeout,\n        )\n\n        if response.ok:\n            return response\n        else:\n            raise APIError(response)\n\n    def batch_update(self, id: str, body: Optional[Mapping[str, Any]]) -> Any:\n        \"\"\"Lower-level method that directly calls `spreadsheets/<ID>:batchUpdate <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/batchUpdate>`_.\n\n        :param dict body: `Batch Update Request body <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/batchUpdate#request-body>`_.\n        :returns: `Batch Update Response body <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/batchUpdate#response-body>`_.\n        :rtype: dict\n\n        .. versionadded:: 3.0\n        \"\"\"\n        r = self.request(\"post\", SPREADSHEET_BATCH_UPDATE_URL % id, json=body)\n\n        return r.json()\n\n    def values_update(\n        self,\n        id: str,\n        range: str,\n        params: Optional[ParamsType] = None,\n        body: Optional[Mapping[str, Any]] = None,\n    ) -> Any:\n        \"\"\"Lower-level method that directly calls `PUT spreadsheets/<ID>/values/<range> <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/update>`_.\n\n        :param str range: The `A1 notation <https://developers.google.com/sheets/api/guides/concepts#a1_notation>`_ of the values to update.\n        :param dict params: (optional) `Values Update Query parameters <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/update#query-parameters>`_.\n        :param dict body: (optional) `Values Update Request body <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/update#request-body>`_.\n        :returns: `Values Update Response body <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/update#response-body>`_.\n        :rtype: dict\n\n        Example::\n\n            sh.values_update(\n                'Sheet1!A2',\n                params={\n                    'valueInputOption': 'USER_ENTERED'\n                },\n                body={\n                    'values': [[1, 2, 3]]\n                }\n            )\n\n        .. versionadded:: 3.0\n        \"\"\"\n        url = SPREADSHEET_VALUES_URL % (id, quote(range))\n        r = self.request(\"put\", url, params=params, json=body)\n        return r.json()\n\n    def values_append(\n        self, id: str, range: str, params: ParamsType, body: Optional[Mapping[str, Any]]\n    ) -> Any:\n        \"\"\"Lower-level method that directly calls `spreadsheets/<ID>/values:append <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/append>`_.\n\n        :param str range: The `A1 notation <https://developers.google.com/sheets/api/guides/concepts#a1_notation>`_\n                          of a range to search for a logical table of data. Values will be appended after the last row of the table.\n        :param dict params: `Values Append Query parameters <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/append#query-parameters>`_.\n        :param dict body: `Values Append Request body <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/append#request-body>`_.\n        :returns: `Values Append Response body <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/append#response-body>`_.\n        :rtype: dict\n\n        .. versionadded:: 3.0\n        \"\"\"\n        url = SPREADSHEET_VALUES_APPEND_URL % (id, quote(range))\n        r = self.request(\"post\", url, params=params, json=body)\n        return r.json()\n\n    def values_clear(self, id: str, range: str) -> Any:\n        \"\"\"Lower-level method that directly calls `spreadsheets/<ID>/values:clear <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/clear>`_.\n\n        :param str range: The `A1 notation <https://developers.google.com/sheets/api/guides/concepts#a1_notation>`_ of the values to clear.\n        :returns: `Values Clear Response body <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/clear#response-body>`_.\n        :rtype: dict\n\n        .. versionadded:: 3.0\n        \"\"\"\n        url = SPREADSHEET_VALUES_CLEAR_URL % (id, quote(range))\n        r = self.request(\"post\", url)\n        return r.json()\n\n    def values_batch_clear(\n        self,\n        id: str,\n        params: Optional[ParamsType] = None,\n        body: Optional[Mapping[str, Any]] = None,\n    ) -> Any:\n        \"\"\"Lower-level method that directly calls `spreadsheets/<ID>/values:batchClear`\n\n        :param dict params: (optional) `Values Batch Clear Query parameters <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchClear#path-parameters>`_.\n        :param dict body: (optional) `Values Batch Clear request body <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchClear#request-body>`_.\n        :rtype: dict\n        \"\"\"\n        url = SPREADSHEET_VALUES_BATCH_CLEAR_URL % id\n        r = self.request(\"post\", url, params=params, json=body)\n        return r.json()\n\n    def values_get(\n        self, id: str, range: str, params: Optional[ParamsType] = None\n    ) -> Any:\n        \"\"\"Lower-level method that directly calls `GET spreadsheets/<ID>/values/<range> <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/get>`_.\n\n        :param str range: The `A1 notation <https://developers.google.com/sheets/api/guides/concepts#a1_notation>`_ of the values to retrieve.\n        :param dict params: (optional) `Values Get Query parameters <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/get#query-parameters>`_.\n        :returns: `Values Get Response body <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/get#response-body>`_.\n        :rtype: dict\n\n        .. versionadded:: 3.0\n        \"\"\"\n        url = SPREADSHEET_VALUES_URL % (id, quote(range))\n        r = self.request(\"get\", url, params=params)\n        return r.json()\n\n    def values_batch_get(\n        self, id: str, ranges: List[str], params: Optional[ParamsType] = None\n    ) -> Any:\n        \"\"\"Lower-level method that directly calls `spreadsheets/<ID>/values:batchGet <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchGet>`_.\n\n        :param list ranges: List of ranges in the `A1 notation <https://developers.google.com/sheets/api/guides/concepts#a1_notation>`_ of the values to retrieve.\n        :param dict params: (optional) `Values Batch Get Query parameters <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchGet#query-parameters>`_.\n        :returns: `Values Batch Get Response body <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchGet#response-body>`_.\n        :rtype: dict\n        \"\"\"\n        if params is None:\n            params = {}\n\n        params[\"ranges\"] = ranges\n\n        url = SPREADSHEET_VALUES_BATCH_URL % id\n        r = self.request(\"get\", url, params=params)\n        return r.json()\n\n    def values_batch_update(\n        self, id: str, body: Optional[Mapping[str, Any]] = None\n    ) -> Any:\n        \"\"\"Lower-level method that directly calls `spreadsheets/<ID>/values:batchUpdate <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchUpdate>`_.\n\n        :param dict body: (optional) `Values Batch Update Request body <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchUpdate#request-body>`_.\n        :returns: `Values Batch Update Response body <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchUpdate#response-body>`_.\n        :rtype: dict\n        \"\"\"\n        url = SPREADSHEET_VALUES_BATCH_UPDATE_URL % id\n        r = self.request(\"post\", url, json=body)\n        return r.json()\n\n    def spreadsheets_get(self, id: str, params: Optional[ParamsType] = None) -> Any:\n        \"\"\"A method stub that directly calls `spreadsheets.get <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/get>`_.\"\"\"\n        url = SPREADSHEET_URL % id\n        r = self.request(\"get\", url, params=params)\n        return r.json()\n\n    def spreadsheets_sheets_copy_to(\n        self, id: str, sheet_id: int, destination_spreadsheet_id: str\n    ) -> Any:\n        \"\"\"Lower-level method that directly calls `spreadsheets.sheets.copyTo <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.sheets/copyTo>`_.\"\"\"\n        url = SPREADSHEET_SHEETS_COPY_TO_URL % (id, sheet_id)\n\n        body = {\"destinationSpreadsheetId\": destination_spreadsheet_id}\n        r = self.request(\"post\", url, json=body)\n        return r.json()\n\n    def fetch_sheet_metadata(\n        self, id: str, params: Optional[ParamsType] = None\n    ) -> Mapping[str, Any]:\n        \"\"\"Similar to :method spreadsheets_get:`gspread.http_client.spreadsheets_get`,\n        get the spreadsheet from the API but by default **does not get the cells data**.\n        It only retrieves the metadata from the spreadsheet.\n\n        :param str id: the spreadsheet ID key\n        :param dict params: (optional) the HTTP params for the GET request.\n            By default sets the parameter ``includeGridData`` to ``false``.\n        :returns: The raw spreadsheet\n        :rtype: dict\n        \"\"\"\n        if params is None:\n            params = {\"includeGridData\": \"false\"}\n\n        url = SPREADSHEET_URL % id\n\n        r = self.request(\"get\", url, params=params)\n\n        return r.json()\n\n    def get_file_drive_metadata(self, id: str) -> Any:\n        \"\"\"Get the metadata from the Drive API for a specific file\n        This method is mainly here to retrieve the create/update time\n        of a file (these metadata are only accessible from the Drive API).\n        \"\"\"\n\n        url = DRIVE_FILES_API_V3_URL + \"/{}\".format(id)\n\n        params: ParamsType = {\n            \"supportsAllDrives\": True,\n            \"includeItemsFromAllDrives\": True,\n            \"fields\": \"id,name,createdTime,modifiedTime\",\n        }\n\n        res = self.request(\"get\", url, params=params)\n\n        return res.json()\n\n    def export(self, file_id: str, format: str = ExportFormat.PDF) -> bytes:\n        \"\"\"Export the spreadsheet in the given format.\n\n        :param str file_id: The key of the spreadsheet to export\n\n        :param str format: The format of the resulting file.\n            Possible values are:\n\n                * ``ExportFormat.PDF``\n                * ``ExportFormat.EXCEL``\n                * ``ExportFormat.CSV``\n                * ``ExportFormat.OPEN_OFFICE_SHEET``\n                * ``ExportFormat.TSV``\n                * ``ExportFormat.ZIPPED_HTML``\n\n            See `ExportFormat`_ in the Drive API.\n\n        :type format: :class:`~gspread.utils.ExportFormat`\n\n        :returns bytes: The content of the exported file.\n\n        .. _ExportFormat: https://developers.google.com/drive/api/guides/ref-export-formats\n        \"\"\"\n\n        if format not in ExportFormat:\n            raise UnSupportedExportFormat\n\n        url = \"{}/{}/export\".format(DRIVE_FILES_API_V3_URL, file_id)\n\n        params: ParamsType = {\"mimeType\": format}\n\n        r = self.request(\"get\", url, params=params)\n        return r.content\n\n    def insert_permission(\n        self,\n        file_id: str,\n        email_address: Optional[str],\n        perm_type: Optional[str],\n        role: Optional[str],\n        notify: bool = True,\n        email_message: Optional[str] = None,\n        with_link: bool = False,\n    ) -> Response:\n        \"\"\"Creates a new permission for a file.\n\n        :param str file_id: a spreadsheet ID (aka file ID).\n        :param email_address: user or group e-mail address, domain name\n            or None for 'anyone' type.\n        :type email_address: str, None\n        :param str perm_type: (optional) The account type.\n            Allowed values are: ``user``, ``group``, ``domain``, ``anyone``\n        :param str role: (optional) The primary role for this user.\n            Allowed values are: ``owner``, ``writer``, ``reader``\n        :param bool notify: Whether to send an email to the target\n            user/domain. Default ``True``.\n        :param str email_message: (optional) An email message to be sent\n            if ``notify=True``.\n        :param bool with_link: Whether the link is required for this\n            permission to be active. Default ``False``.\n\n        :returns dict: the newly created permission\n\n        Examples::\n\n            # Give write permissions to otto@example.com\n\n            gc.insert_permission(\n                '0BmgG6nO_6dprnRRUWl1UFE',\n                'otto@example.org',\n                perm_type='user',\n                role='writer'\n            )\n\n            # Make the spreadsheet publicly readable\n\n            gc.insert_permission(\n                '0BmgG6nO_6dprnRRUWl1UFE',\n                None,\n                perm_type='anyone',\n                role='reader'\n            )\n\n        \"\"\"\n        url = \"{}/{}/permissions\".format(DRIVE_FILES_API_V3_URL, file_id)\n        payload = {\n            \"type\": perm_type,\n            \"role\": role,\n            \"withLink\": with_link,\n        }\n        params: ParamsType = {\n            \"supportsAllDrives\": \"true\",\n        }\n\n        if perm_type == \"domain\":\n            payload[\"domain\"] = email_address\n        elif perm_type in {\"user\", \"group\"}:\n            payload[\"emailAddress\"] = email_address\n            params[\"sendNotificationEmail\"] = notify\n            params[\"emailMessage\"] = email_message\n        elif perm_type == \"anyone\":\n            pass\n        else:\n            raise ValueError(\"Invalid permission type: {}\".format(perm_type))\n\n        return self.request(\"post\", url, json=payload, params=params)\n\n    def list_permissions(self, file_id: str) -> List[Dict[str, Union[str, bool]]]:\n        \"\"\"Retrieve a list of permissions for a file.\n\n        :param str file_id: a spreadsheet ID (aka file ID).\n        \"\"\"\n        url = \"{}/{}/permissions\".format(DRIVE_FILES_API_V3_URL, file_id)\n\n        params: ParamsType = {\n            \"supportsAllDrives\": True,\n            \"fields\": \"nextPageToken,permissions\",\n        }\n\n        token = \"\"\n\n        permissions = []\n\n        while token is not None:\n            if token:\n                params[\"pageToken\"] = token\n\n            r = self.request(\"get\", url, params=params).json()\n            permissions.extend(r[\"permissions\"])\n\n            token = r.get(\"nextPageToken\", None)\n\n        return permissions\n\n    def remove_permission(self, file_id: str, permission_id: str) -> None:\n        \"\"\"Deletes a permission from a file.\n\n        :param str file_id: a spreadsheet ID (aka file ID.)\n        :param str permission_id: an ID for the permission.\n        \"\"\"\n        url = \"{}/{}/permissions/{}\".format(\n            DRIVE_FILES_API_V3_URL, file_id, permission_id\n        )\n\n        params: ParamsType = {\"supportsAllDrives\": True}\n        self.request(\"delete\", url, params=params)\n\n    def import_csv(self, file_id: str, data: Union[str, bytes]) -> Any:\n        \"\"\"Imports data into the first page of the spreadsheet.\n\n        :param str data: A CSV string of data.\n\n        Example:\n\n        .. code::\n\n            # Read CSV file contents\n            content = open('file_to_import.csv', 'r').read()\n\n            gc.import_csv(spreadsheet.id, content)\n\n        .. note::\n\n           This method removes all other worksheets and then entirely\n           replaces the contents of the first worksheet.\n\n        \"\"\"\n        # Make sure we send utf-8\n        if isinstance(data, str):\n            data = data.encode(\"utf-8\")\n\n        headers = {\"Content-Type\": \"text/csv\"}\n        url = \"{}/{}\".format(DRIVE_FILES_UPLOAD_API_V2_URL, file_id)\n\n        res = self.request(\n            \"put\",\n            url,\n            data=data,\n            params={\n                \"uploadType\": \"media\",\n                \"convert\": True,\n                \"supportsAllDrives\": True,\n            },\n            headers=headers,\n        )\n\n        return res.json()\n\n\nclass BackOffHTTPClient(HTTPClient):\n    \"\"\"BackOffHTTPClient is a http client with exponential\n    backoff retries.\n\n    In case a request fails due to some API rate limits,\n    it will wait for some time, then retry the request.\n\n    This can help by trying the request after some time and\n    prevent the application from failing (by raising an APIError exception).\n\n    .. Warning::\n        This HTTPClient is not production ready yet.\n        Use it at your own risk !\n\n    .. note::\n        To use with the `auth` module, make sure to pass this backoff\n        http client using the ``http_client`` parameter of the\n        method used.\n\n    .. note::\n        Currently known issues are:\n\n        * will retry exponentially even when the error should\n          raise instantly. Due to the Drive API that raises\n          403 (Forbidden) errors for forbidden access and\n          for api rate limit exceeded.\"\"\"\n\n    _HTTP_ERROR_CODES: List[HTTPStatus] = [\n        HTTPStatus.REQUEST_TIMEOUT,  # in case of a timeout\n        HTTPStatus.TOO_MANY_REQUESTS,  # sheet API usage rate limit exceeded\n    ]\n    _NR_BACKOFF: int = 0\n    _MAX_BACKOFF: int = 128  # arbitrary maximum backoff\n\n    def request(self, *args: Any, **kwargs: Any) -> Response:\n        # Check if we should retry the request\n        def _should_retry(\n            code: int,\n            error: Mapping[str, Any],\n            wait: int,\n        ) -> bool:\n            # Drive API return a dict object 'errors', the sheet API does not\n            if \"errors\" in error:\n                # Drive API returns a code 403 when reaching quotas/usage limits\n                if (\n                    code == HTTPStatus.FORBIDDEN\n                    and error[\"errors\"][0][\"domain\"] == \"usageLimits\"\n                ):\n                    return True\n\n            # We retry if:\n            #   - the return code is one of:\n            #     - 429: too many requests\n            #     - 408: request timeout\n            #     - >= 500: some server error\n            #   - AND we did not reach the max retry limit\n            return (\n                code in self._HTTP_ERROR_CODES\n                or code >= HTTPStatus.INTERNAL_SERVER_ERROR\n            ) and wait <= self._MAX_BACKOFF\n\n        try:\n            return super().request(*args, **kwargs)\n        except APIError as err:\n            code = err.code\n            error = err.error\n\n            self._NR_BACKOFF += 1\n            wait = min(2**self._NR_BACKOFF, self._MAX_BACKOFF)\n\n            # check if error should retry\n            if _should_retry(code, error, wait) is True:\n                time.sleep(wait)\n\n                # make the request again\n                response = self.request(*args, **kwargs)\n\n                # reset counters for next time\n                self._NR_BACKOFF = 0\n\n                return response\n\n            # failed too many times, raise APIEerror\n            raise err\n        except RefreshError as err:\n            self._NR_BACKOFF += 1\n            wait = min(2**self._NR_BACKOFF, self._MAX_BACKOFF)\n\n            if wait <= self._MAX_BACKOFF:\n                time.sleep(wait)\n\n                # make the request again\n                response = self.request(*args, **kwargs)\n\n                # reset counters for next time\n                self._NR_BACKOFF = 0\n\n                return response\n\n            # failed too many times, raise APIEerror\n            raise err\n\n\nHTTPClientType = Type[HTTPClient]\n"
  },
  {
    "path": "gspread/py.typed",
    "content": ""
  },
  {
    "path": "gspread/spreadsheet.py",
    "content": "\"\"\"\ngspread.spreadsheet\n~~~~~~~~~~~~~~\n\nThis module contains common spreadsheets' models.\n\n\"\"\"\n\nimport warnings\nfrom typing import Any, Dict, Generator, Iterable, List, Mapping, Optional, Union\n\nfrom requests import Response\n\nfrom .cell import Cell\nfrom .exceptions import WorksheetNotFound\nfrom .http_client import HTTPClient, ParamsType\nfrom .urls import DRIVE_FILES_API_V3_URL, SPREADSHEET_DRIVE_URL\nfrom .utils import ExportFormat, finditem\nfrom .worksheet import Worksheet\n\n\nclass Spreadsheet:\n    \"\"\"The class that represents a spreadsheet.\"\"\"\n\n    def __init__(self, http_client: HTTPClient, properties: Dict[str, Union[str, Any]]):\n        self.client = http_client\n        self._properties = properties\n\n        metadata = self.fetch_sheet_metadata()\n        self._properties.update(metadata[\"properties\"])\n\n    @property\n    def id(self) -> str:\n        \"\"\"Spreadsheet ID.\"\"\"\n        return self._properties[\"id\"]\n\n    @property\n    def title(self) -> str:\n        \"\"\"Spreadsheet title.\"\"\"\n        return self._properties[\"title\"]\n\n    @property\n    def url(self) -> str:\n        \"\"\"Spreadsheet URL.\"\"\"\n        return SPREADSHEET_DRIVE_URL % self.id\n\n    @property\n    def creationTime(self) -> str:\n        \"\"\"Spreadsheet Creation time.\"\"\"\n        if \"createdTime\" not in self._properties:\n            self.update_drive_metadata()\n        return self._properties[\"createdTime\"]\n\n    @property\n    def lastUpdateTime(self) -> str:\n        \"\"\"Spreadsheet last updated time.\n        Only updated on initialisation.\n        For actual last updated time, use get_lastUpdateTime().\"\"\"\n        warnings.warn(\n            \"worksheet.lastUpdateTime is deprecated, please use worksheet.get_lastUpdateTime()\",\n            category=DeprecationWarning,\n        )\n        if \"modifiedTime\" not in self._properties:\n            self.update_drive_metadata()\n        return self._properties[\"modifiedTime\"]\n\n    @property\n    def timezone(self) -> str:\n        \"\"\"Spreadsheet timeZone\"\"\"\n        return self._properties[\"timeZone\"]\n\n    @property\n    def locale(self) -> str:\n        \"\"\"Spreadsheet locale\"\"\"\n        return self._properties[\"locale\"]\n\n    @property\n    def sheet1(self) -> Worksheet:\n        \"\"\"Shortcut property for getting the first worksheet.\"\"\"\n        return self.get_worksheet(0)\n\n    def __iter__(self) -> Generator[Worksheet, None, None]:\n        yield from self.worksheets()\n\n    def __repr__(self) -> str:\n        return \"<{} {} id:{}>\".format(\n            self.__class__.__name__,\n            repr(self.title),\n            self.id,\n        )\n\n    def batch_update(self, body: Mapping[str, Any]) -> Any:\n        \"\"\"Lower-level method that directly calls `spreadsheets/<ID>:batchUpdate <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/batchUpdate>`_.\n\n        :param dict body: `Batch Update Request body <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/batchUpdate#request-body>`_.\n        :returns: `Batch Update Response body <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/batchUpdate#response-body>`_.\n        :rtype: dict\n\n        .. versionadded:: 3.0\n        \"\"\"\n        return self.client.batch_update(self.id, body)\n\n    def values_append(\n        self, range: str, params: ParamsType, body: Mapping[str, Any]\n    ) -> Any:\n        \"\"\"Lower-level method that directly calls `spreadsheets/<ID>/values:append <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/append>`_.\n\n        :param str range: The `A1 notation <https://developers.google.com/sheets/api/guides/concepts#a1_notation>`_\n                          of a range to search for a logical table of data. Values will be appended after the last row of the table.\n        :param dict params: `Values Append Query parameters <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/append#query-parameters>`_.\n        :param dict body: `Values Append Request body <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/append#request-body>`_.\n        :returns: `Values Append Response body <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/append#response-body>`_.\n        :rtype: dict\n\n        .. versionadded:: 3.0\n        \"\"\"\n        return self.client.values_append(self.id, range, params, body)\n\n    def values_clear(self, range: str) -> Any:\n        \"\"\"Lower-level method that directly calls `spreadsheets/<ID>/values:clear <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/clear>`_.\n\n        :param str range: The `A1 notation <https://developers.google.com/sheets/api/guides/concepts#a1_notation>`_ of the values to clear.\n        :returns: `Values Clear Response body <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/clear#response-body>`_.\n        :rtype: dict\n\n        .. versionadded:: 3.0\n        \"\"\"\n        return self.client.values_clear(self.id, range)\n\n    def values_batch_clear(\n        self,\n        params: Optional[ParamsType] = None,\n        body: Optional[Mapping[str, Any]] = None,\n    ) -> Any:\n        \"\"\"Lower-level method that directly calls `spreadsheets/<ID>/values:batchClear`\n\n        :param dict params: (optional) `Values Batch Clear Query parameters <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchClear#path-parameters>`_.\n        :param dict body: (optional) `Values Batch Clear request body <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchClear#request-body>`_.\n        :rtype: dict\n        \"\"\"\n        return self.client.values_batch_clear(self.id, params, body)\n\n    def values_get(self, range: str, params: Optional[ParamsType] = None) -> Any:\n        \"\"\"Lower-level method that directly calls `GET spreadsheets/<ID>/values/<range> <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/get>`_.\n\n        :param str range: The `A1 notation <https://developers.google.com/sheets/api/guides/concepts#a1_notation>`_ of the values to retrieve.\n        :param dict params: (optional) `Values Get Query parameters <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/get#query-parameters>`_.\n        :returns: `Values Get Response body <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/get#response-body>`_.\n        :rtype: dict\n\n        .. versionadded:: 3.0\n        \"\"\"\n        return self.client.values_get(self.id, range, params=params)\n\n    def values_batch_get(\n        self, ranges: List[str], params: Optional[ParamsType] = None\n    ) -> Any:\n        \"\"\"Lower-level method that directly calls `spreadsheets/<ID>/values:batchGet <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchGet>`_.\n\n        :param list ranges: List of ranges in the `A1 notation <https://developers.google.com/sheets/api/guides/concepts#a1_notation>`_ of the values to retrieve.\n        :param dict params: (optional) `Values Batch Get Query parameters <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchGet#query-parameters>`_.\n        :returns: `Values Batch Get Response body <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchGet#response-body>`_.\n        :rtype: dict\n        \"\"\"\n        return self.client.values_batch_get(self.id, ranges, params=params)\n\n    def values_update(\n        self,\n        range: str,\n        params: Optional[ParamsType] = None,\n        body: Optional[Mapping[str, Any]] = None,\n    ) -> Any:\n        \"\"\"Lower-level method that directly calls `PUT spreadsheets/<ID>/values/<range> <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/update>`_.\n\n        :param str range: The `A1 notation <https://developers.google.com/sheets/api/guides/concepts#a1_notation>`_ of the values to update.\n        :param dict params: (optional) `Values Update Query parameters <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/update#query-parameters>`_.\n        :param dict body: (optional) `Values Update Request body <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/update#request-body>`_.\n        :returns: `Values Update Response body <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/update#response-body>`_.\n        :rtype: dict\n\n        Example::\n\n            sh.values_update(\n                'Sheet1!A2',\n                params={\n                    'valueInputOption': 'USER_ENTERED'\n                },\n                body={\n                    'values': [[1, 2, 3]]\n                }\n            )\n\n        .. versionadded:: 3.0\n        \"\"\"\n        return self.client.values_update(self.id, range, params=params, body=body)\n\n    def values_batch_update(self, body: Optional[Mapping[str, Any]] = None) -> Any:\n        \"\"\"Lower-level method that directly calls `spreadsheets/<ID>/values:batchUpdate <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchUpdate>`_.\n\n        :param dict body: (optional) `Values Batch Update Request body <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchUpdate#request-body>`_.\n        :returns: `Values Batch Update Response body <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchUpdate#response-body>`_.\n        :rtype: dict\n        \"\"\"\n        return self.client.values_batch_update(self.id, body=body)\n\n    def _spreadsheets_get(self, params: Optional[ParamsType] = None) -> Any:\n        \"\"\"A method stub that directly calls `spreadsheets.get <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/get>`_.\"\"\"\n        return self.client.spreadsheets_get(self.id, params=params)\n\n    def _spreadsheets_sheets_copy_to(\n        self, sheet_id: int, destination_spreadsheet_id: str\n    ) -> Any:\n        \"\"\"Lower-level method that directly calls `spreadsheets.sheets.copyTo <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.sheets/copyTo>`_.\"\"\"\n        return self.client.spreadsheets_sheets_copy_to(\n            self.id, sheet_id, destination_spreadsheet_id\n        )\n\n    def fetch_sheet_metadata(\n        self, params: Optional[ParamsType] = None\n    ) -> Mapping[str, Any]:\n        \"\"\"Similar to :method spreadsheets_get:`gspread.http_client.spreadsheets_get`,\n        get the spreadsheet from the API but by default **does not get the cells data**.\n        It only retrieves the metadata from the spreadsheet.\n\n        :param dict params: (optional) the HTTP params for the GET request.\n            By default sets the parameter ``includeGridData`` to ``false``.\n        :returns: The raw spreadsheet\n        :rtype: dict\n        \"\"\"\n        return self.client.fetch_sheet_metadata(self.id, params=params)\n\n    def get_worksheet(self, index: int) -> Worksheet:\n        \"\"\"Returns a worksheet with specified `index`.\n\n        :param index: An index of a worksheet. Indexes start from zero.\n        :type index: int\n\n        :returns: an instance of :class:`gspread.worksheet.Worksheet`.\n\n        :raises:\n            :class:`~gspread.exceptions.WorksheetNotFound`: if can't find the worksheet\n\n        Example. To get third worksheet of a spreadsheet:\n\n        >>> sht = client.open('My fancy spreadsheet')\n        >>> worksheet = sht.get_worksheet(2)\n        \"\"\"\n        sheet_data = self.fetch_sheet_metadata()\n\n        try:\n            properties = sheet_data[\"sheets\"][index][\"properties\"]\n            return Worksheet(self, properties, self.id, self.client)\n        except (KeyError, IndexError):\n            raise WorksheetNotFound(\"index {} not found\".format(index))\n\n    def get_worksheet_by_id(self, id: Union[str, int]) -> Worksheet:\n        \"\"\"Returns a worksheet with specified `worksheet id`.\n\n        :param id: The id of a worksheet. it can be seen in the url as the value of the parameter 'gid'.\n        :type id: str | int\n\n        :returns: an instance of :class:`gspread.worksheet.Worksheet`.\n        :raises:\n            :class:`~gspread.exceptions.WorksheetNotFound`: if can't find the worksheet\n\n        Example. To get the worksheet 123456 of a spreadsheet:\n\n        >>> sht = client.open('My fancy spreadsheet')\n        >>> worksheet = sht.get_worksheet_by_id(123456)\n        \"\"\"\n        sheet_data = self.fetch_sheet_metadata()\n\n        try:\n            worksheet_id_int = int(id)\n        except ValueError as ex:\n            raise ValueError(\"id should be int\") from ex\n\n        try:\n            item = finditem(\n                lambda x: x[\"properties\"][\"sheetId\"] == worksheet_id_int,\n                sheet_data[\"sheets\"],\n            )\n            return Worksheet(self, item[\"properties\"], self.id, self.client)\n        except (StopIteration, KeyError):\n            raise WorksheetNotFound(\"id {} not found\".format(worksheet_id_int))\n\n    def worksheets(self, exclude_hidden: bool = False) -> List[Worksheet]:\n        \"\"\"Returns a list of all :class:`worksheets <gspread.worksheet.Worksheet>`\n        in a spreadsheet.\n\n        :param exclude_hidden: (optional) If set to ``True`` will only return\n                                 visible worksheets. Default is ``False``.\n        :type exclude_hidden: bool\n\n        :returns: a list of :class:`worksheets <gspread.worksheet.Worksheet>`.\n        :rtype: list\n        \"\"\"\n        sheet_data = self.fetch_sheet_metadata()\n        worksheets = [\n            Worksheet(self, s[\"properties\"], self.id, self.client)\n            for s in sheet_data[\"sheets\"]\n        ]\n        if exclude_hidden:\n            worksheets = [w for w in worksheets if not w.isSheetHidden]\n        return worksheets\n\n    def worksheet(self, title: str) -> Worksheet:\n        \"\"\"Returns a worksheet with specified `title`.\n\n        :param title: A title of a worksheet. If there're multiple\n                      worksheets with the same title, first one will\n                      be returned.\n        :type title: str\n\n        :returns: an instance of :class:`gspread.worksheet.Worksheet`.\n\n        :raises:\n            WorksheetNotFound: if can't find the worksheet\n\n        Example. Getting worksheet named 'Annual bonuses'\n\n        >>> sht = client.open('Sample one')\n        >>> worksheet = sht.worksheet('Annual bonuses')\n        \"\"\"\n        sheet_data = self.fetch_sheet_metadata()\n        try:\n            item = finditem(\n                lambda x: x[\"properties\"][\"title\"] == title,\n                sheet_data[\"sheets\"],\n            )\n            return Worksheet(self, item[\"properties\"], self.id, self.client)\n        except (StopIteration, KeyError):\n            raise WorksheetNotFound(title)\n\n    def add_worksheet(\n        self, title: str, rows: int, cols: int, index: Optional[int] = None\n    ) -> Worksheet:\n        \"\"\"Adds a new worksheet to a spreadsheet.\n\n        :param title: A title of a new worksheet.\n        :type title: str\n        :param rows: Number of rows.\n        :type rows: int\n        :param cols: Number of columns.\n        :type cols: int\n        :param index: Position of the sheet.\n        :type index: int\n\n        :returns: a newly created :class:`worksheets <gspread.worksheet.Worksheet>`.\n        \"\"\"\n        body: Dict[\n            str, List[Dict[str, Dict[str, Dict[str, Union[str, int, Dict[str, int]]]]]]\n        ] = {\n            \"requests\": [\n                {\n                    \"addSheet\": {\n                        \"properties\": {\n                            \"title\": title,\n                            \"sheetType\": \"GRID\",\n                            \"gridProperties\": {\n                                \"rowCount\": rows,\n                                \"columnCount\": cols,\n                            },\n                        }\n                    }\n                }\n            ]\n        }\n\n        if index is not None:\n            body[\"requests\"][0][\"addSheet\"][\"properties\"][\"index\"] = index\n\n        data = self.client.batch_update(self.id, body)\n\n        properties = data[\"replies\"][0][\"addSheet\"][\"properties\"]\n\n        return Worksheet(self, properties, self.id, self.client)\n\n    def duplicate_sheet(\n        self,\n        source_sheet_id: int,\n        insert_sheet_index: Optional[int] = None,\n        new_sheet_id: Optional[int] = None,\n        new_sheet_name: Optional[str] = None,\n    ) -> Worksheet:\n        \"\"\"Duplicates the contents of a sheet.\n\n        :param int source_sheet_id: The sheet ID to duplicate.\n        :param int insert_sheet_index: (optional) The zero-based index\n                                       where the new sheet should be inserted.\n                                       The index of all sheets after this are\n                                       incremented.\n        :param int new_sheet_id: (optional) The ID of the new sheet.\n                                 If not set, an ID is chosen. If set, the ID\n                                 must not conflict with any existing sheet ID.\n                                 If set, it must be non-negative.\n        :param str new_sheet_name: (optional) The name of the new sheet.\n                                   If empty, a new name is chosen for you.\n\n        :returns: a newly created :class:`gspread.worksheet.Worksheet`\n\n        .. versionadded:: 3.1\n        \"\"\"\n\n        return Worksheet._duplicate(\n            self.client,\n            self.id,\n            source_sheet_id,\n            self,\n            insert_sheet_index=insert_sheet_index,\n            new_sheet_id=new_sheet_id,\n            new_sheet_name=new_sheet_name,\n        )\n\n    def del_worksheet(self, worksheet: Worksheet) -> Any:\n        \"\"\"Deletes a worksheet from a spreadsheet.\n\n        :param worksheet: The worksheet to be deleted.\n        :type worksheet: :class:`~gspread.worksheet.Worksheet`\n        \"\"\"\n        body = {\"requests\": [{\"deleteSheet\": {\"sheetId\": worksheet.id}}]}\n\n        return self.client.batch_update(self.id, body)\n\n    def del_worksheet_by_id(self, worksheet_id: Union[str, int]) -> Any:\n        \"\"\"\n        Deletes a Worksheet by id\n        \"\"\"\n        try:\n            worksheet_id_int = int(worksheet_id)\n        except ValueError as ex:\n            raise ValueError(\"id should be int\") from ex\n\n        body = {\"requests\": [{\"deleteSheet\": {\"sheetId\": worksheet_id_int}}]}\n\n        return self.client.batch_update(self.id, body)\n\n    def reorder_worksheets(\n        self, worksheets_in_desired_order: Iterable[Worksheet]\n    ) -> Any:\n        \"\"\"Updates the ``index`` property of each Worksheet to reflect\n        its index in the provided sequence of Worksheets.\n\n        :param worksheets_in_desired_order: Iterable of Worksheet objects in desired order.\n\n        Note: If you omit some of the Spreadsheet's existing Worksheet objects from\n        the provided sequence, those Worksheets will be appended to the end of the sequence\n        in the order that they appear in the list returned by :meth:`gspread.spreadsheet.Spreadsheet.worksheets`.\n\n        .. versionadded:: 3.4\n        \"\"\"\n        idx_map = {}\n        for idx, w in enumerate(worksheets_in_desired_order):\n            idx_map[w.id] = idx\n        for w in self.worksheets():\n            if w.id in idx_map:\n                continue\n            idx += 1\n            idx_map[w.id] = idx\n\n        body = {\n            \"requests\": [\n                {\n                    \"updateSheetProperties\": {\n                        \"properties\": {\"sheetId\": key, \"index\": val},\n                        \"fields\": \"index\",\n                    }\n                }\n                for key, val in idx_map.items()\n            ]\n        }\n\n        return self.client.batch_update(self.id, body)\n\n    def share(\n        self,\n        email_address: str,\n        perm_type: str,\n        role: str,\n        notify: bool = True,\n        email_message: Optional[str] = None,\n        with_link: bool = False,\n    ) -> Response:\n        \"\"\"Share the spreadsheet with other accounts.\n\n        :param email_address: user or group e-mail address, domain name\n                      or None for 'anyone' type.\n        :type email_address: str, None\n        :param perm_type: The account type.\n               Allowed values are: ``user``, ``group``, ``domain``,\n               ``anyone``.\n        :type perm_type: str\n        :param role: The primary role for this user.\n               Allowed values are: ``owner``, ``writer``, ``reader``.\n        :type role: str\n        :param notify: (optional) Whether to send an email to the target user/domain.\n        :type notify: bool\n        :param email_message: (optional) The email to be sent if notify=True\n        :type email_message: str\n        :param with_link: (optional) Whether the link is required for this permission\n        :type with_link: bool\n\n        Example::\n\n            # Give Otto a write permission on this spreadsheet\n            sh.share('otto@example.com', perm_type='user', role='writer')\n\n            # Give Otto's family a read permission on this spreadsheet\n            sh.share('otto-familly@example.com', perm_type='group', role='reader')\n        \"\"\"\n        return self.client.insert_permission(\n            self.id,\n            email_address=email_address,\n            perm_type=perm_type,\n            role=role,\n            notify=notify,\n            email_message=email_message,\n            with_link=with_link,\n        )\n\n    def export(self, format: ExportFormat = ExportFormat.PDF) -> bytes:\n        \"\"\"Export the spreadsheet in the given format.\n\n        :param str file_id: A key of a spreadsheet to export\n\n        :param format: The format of the resulting file.\n            Possible values are:\n\n                ``ExportFormat.PDF``,\n                ``ExportFormat.EXCEL``,\n                ``ExportFormat.CSV``,\n                ``ExportFormat.OPEN_OFFICE_SHEET``,\n                ``ExportFormat.TSV``,\n                and ``ExportFormat.ZIPPED_HTML``.\n\n            See `ExportFormat`_ in the Drive API.\n            Default value is ``ExportFormat.PDF``.\n        :type format: :class:`~gspread.utils.ExportFormat`\n\n        :returns bytes: The content of the exported file.\n\n        .. _ExportFormat: https://developers.google.com/drive/api/guides/ref-export-formats\n        \"\"\"\n        return self.client.export(self.id, format)\n\n    def list_permissions(self) -> List[Dict[str, Union[str, bool]]]:\n        \"\"\"Lists the spreadsheet's permissions.\"\"\"\n        return self.client.list_permissions(self.id)\n\n    def remove_permissions(self, value: str, role: str = \"any\") -> List[str]:\n        \"\"\"Remove permissions from a user or domain.\n\n        :param value: User or domain to remove permissions from\n        :type value: str\n        :param role: (optional) Permission to remove. Defaults to all\n                     permissions.\n        :type role: str\n\n        Example::\n\n            # Remove Otto's write permission for this spreadsheet\n            sh.remove_permissions('otto@example.com', role='writer')\n\n            # Remove all Otto's permissions for this spreadsheet\n            sh.remove_permissions('otto@example.com')\n        \"\"\"\n        permission_list = self.client.list_permissions(self.id)\n\n        key = \"emailAddress\" if \"@\" in value else \"domain\"\n\n        filtered_id_list: List[str] = [\n            str(p[\"id\"])\n            for p in permission_list\n            if p.get(key) == value and (p[\"role\"] == role or role == \"any\")\n        ]\n\n        for permission_id in filtered_id_list:\n            self.client.remove_permission(self.id, permission_id)\n\n        return filtered_id_list\n\n    def transfer_ownership(self, permission_id: str) -> Response:\n        \"\"\"Transfer the ownership of this file to a new user.\n\n        It is necessary to first create the permission with the new owner's email address,\n        get the permission ID then use this method to transfer the ownership.\n\n        .. note::\n\n           You can list all permissions using :meth:`gspread.spreadsheet.Spreadsheet.list_permissions`.\n\n        .. warning::\n\n           You can only transfer ownership to a new user, you cannot transfer ownership to a group\n           or a domain email address.\n        \"\"\"\n\n        url = \"{}/{}/permissions/{}\".format(\n            DRIVE_FILES_API_V3_URL, self.id, permission_id\n        )\n\n        payload = {\n            # new owner must be writer in order to accept ownership by editing permissions\n            \"role\": \"writer\",\n            \"pendingOwner\": True,\n        }\n\n        return self.client.request(\"patch\", url, json=payload)\n\n    def accept_ownership(self, permission_id: str) -> Response:\n        \"\"\"Accept the pending ownership request on that file.\n\n        It is necessary to edit the permission with the pending ownership.\n\n        .. note::\n\n           You can only accept ownership transfer for the user currently being used.\n        \"\"\"\n\n        url = \"{}/{}/permissions/{}\".format(\n            DRIVE_FILES_API_V3_URL,\n            self.id,\n            permission_id,\n        )\n\n        payload = {\n            \"role\": \"owner\",\n        }\n\n        params: ParamsType = {\n            \"transferOwnership\": True,\n        }\n\n        return self.client.request(\"patch\", url, json=payload, params=params)\n\n    def named_range(self, named_range: str) -> List[Cell]:\n        \"\"\"return a list of :class:`gspread.cell.Cell` objects from\n        the specified named range.\n\n        :param named_range: A string with a named range value to fetch.\n        :type named_range: str\n        \"\"\"\n\n        # the function `range` does all necessary actions to get a named range.\n        # This is only here to provide better user experience.\n        return self.sheet1.range(named_range)\n\n    def list_named_ranges(self) -> List[Any]:\n        \"\"\"Lists the spreadsheet's named ranges.\"\"\"\n        return self.fetch_sheet_metadata(params={\"fields\": \"namedRanges\"}).get(\n            \"namedRanges\", []\n        )\n\n    def update_title(self, title: str) -> Any:\n        \"\"\"Renames the spreadsheet.\n\n        :param str title: A new title.\n        \"\"\"\n        body = {\n            \"requests\": [\n                {\n                    \"updateSpreadsheetProperties\": {\n                        \"properties\": {\"title\": title},\n                        \"fields\": \"title\",\n                    }\n                }\n            ]\n        }\n\n        res = self.batch_update(body)\n        self._properties[\"title\"] = title\n        return res\n\n    def update_timezone(self, timezone: str) -> Any:\n        \"\"\"Updates the current spreadsheet timezone.\n        Can be any timezone in CLDR format such as \"America/New_York\"\n        or a custom time zone such as GMT-07:00.\n        \"\"\"\n\n        body = {\n            \"requests\": [\n                {\n                    \"updateSpreadsheetProperties\": {\n                        \"properties\": {\"timeZone\": timezone},\n                        \"fields\": \"timeZone\",\n                    },\n                },\n            ]\n        }\n\n        res = self.batch_update(body)\n        self._properties[\"timeZone\"] = timezone\n        return res\n\n    def update_locale(self, locale: str) -> Any:\n        \"\"\"Update the locale of the spreadsheet.\n        Can be any of the ISO 639-1 language codes, such as: de, fr, en, ...\n        Or an ISO 639-2 if no ISO 639-1 exists.\n        Or a combination of the ISO language code and country code,\n        such as en_US, de_CH, fr_FR, ...\n\n        .. note::\n            Note: when updating this field, not all locales/languages are supported.\n        \"\"\"\n\n        body = {\n            \"requests\": [\n                {\n                    \"updateSpreadsheetProperties\": {\n                        \"properties\": {\"locale\": locale},\n                        \"fields\": \"locale\",\n                    },\n                },\n            ]\n        }\n\n        res = self.batch_update(body)\n        self._properties[\"locale\"] = locale\n        return res\n\n    def list_protected_ranges(self, sheetid: int) -> List[Any]:\n        \"\"\"Lists the spreadsheet's protected named ranges\"\"\"\n        sheets: List[Mapping[str, Any]] = self.fetch_sheet_metadata(\n            params={\"fields\": \"sheets.properties,sheets.protectedRanges\"}\n        )[\"sheets\"]\n\n        try:\n            sheet = finditem(\n                lambda sheet: sheet[\"properties\"][\"sheetId\"] == sheetid, sheets\n            )\n\n        except StopIteration:\n            raise WorksheetNotFound(\"worksheet id {} not found\".format(sheetid))\n\n        return sheet.get(\"protectedRanges\", [])\n\n    def get_lastUpdateTime(self) -> str:\n        \"\"\"Get the lastUpdateTime metadata from the Drive API.\"\"\"\n        metadata = self.client.get_file_drive_metadata(self.id)\n        return metadata[\"modifiedTime\"]\n\n    def update_drive_metadata(self) -> None:\n        \"\"\"Fetches the drive metadata from the Drive API\n        and updates the cached values in _properties dict.\"\"\"\n        drive_metadata = self.client.get_file_drive_metadata(self._properties[\"id\"])\n        self._properties.update(drive_metadata)\n"
  },
  {
    "path": "gspread/urls.py",
    "content": "\"\"\"\ngspread.urls\n~~~~~~~~~~~~\n\nGoogle API urls.\n\n\"\"\"\n\nSPREADSHEETS_API_V4_BASE_URL: str = \"https://sheets.googleapis.com/v4/spreadsheets\"\nSPREADSHEET_URL: str = SPREADSHEETS_API_V4_BASE_URL + \"/%s\"\nSPREADSHEET_BATCH_UPDATE_URL: str = SPREADSHEETS_API_V4_BASE_URL + \"/%s:batchUpdate\"\nSPREADSHEET_VALUES_URL: str = SPREADSHEETS_API_V4_BASE_URL + \"/%s/values/%s\"\nSPREADSHEET_VALUES_BATCH_URL: str = SPREADSHEETS_API_V4_BASE_URL + \"/%s/values:batchGet\"\nSPREADSHEET_VALUES_BATCH_UPDATE_URL: str = (\n    SPREADSHEETS_API_V4_BASE_URL + \"/%s/values:batchUpdate\"\n)\nSPREADSHEET_VALUES_BATCH_CLEAR_URL: str = (\n    SPREADSHEETS_API_V4_BASE_URL + \"/%s/values:batchClear\"\n)\nSPREADSHEET_VALUES_APPEND_URL: str = SPREADSHEET_VALUES_URL + \":append\"\nSPREADSHEET_VALUES_CLEAR_URL: str = SPREADSHEET_VALUES_URL + \":clear\"\nSPREADSHEET_SHEETS_COPY_TO_URL: str = SPREADSHEET_URL + \"/sheets/%s:copyTo\"\n\nDRIVE_FILES_API_V3_URL: str = \"https://www.googleapis.com/drive/v3/files\"\nDRIVE_FILES_UPLOAD_API_V2_URL: str = (\n    \"https://www.googleapis.com\" \"/upload/drive/v2/files\"\n)\n\nDRIVE_FILES_API_V3_COMMENTS_URL: str = (\n    \"https://www.googleapis.com/drive/v3/files/%s/comments\"\n)\n\nSPREADSHEET_DRIVE_URL: str = \"https://docs.google.com/spreadsheets/d/%s\"\nWORKSHEET_DRIVE_URL = SPREADSHEET_DRIVE_URL + \"#gid=%s\"\n"
  },
  {
    "path": "gspread/utils.py",
    "content": "\"\"\"\ngspread.utils\n~~~~~~~~~~~~~\n\nThis module contains utility functions.\n\n\"\"\"\n\nimport enum\nimport re\nfrom collections import defaultdict\nfrom collections.abc import Sequence\nfrom functools import wraps\nfrom itertools import chain\nfrom typing import (\n    TYPE_CHECKING,\n    Any,\n    AnyStr,\n    Callable,\n    Dict,\n    Iterable,\n    List,\n    Mapping,\n    Optional,\n    Tuple,\n    TypeVar,\n    Union,\n)\nfrom urllib.parse import quote as uquote\n\nfrom google.auth.credentials import Credentials as Credentials\nfrom google.oauth2.credentials import Credentials as UserCredentials\nfrom google.oauth2.service_account import Credentials as ServiceAccountCredentials\n\nfrom .exceptions import IncorrectCellLabel, InvalidInputValue, NoValidUrlKeyFound\n\nif TYPE_CHECKING:\n    from .cell import Cell\n\n\nMAGIC_NUMBER = 64\nCELL_ADDR_RE = re.compile(r\"([A-Za-z]+)([1-9]\\d*)\")\nA1_ADDR_ROW_COL_RE = re.compile(r\"([A-Za-z]+)?([1-9]\\d*)?$\")\nA1_ADDR_FULL_RE = re.compile(r\"[A-Za-z]+\\d+:[A-Za-z]+\\d+\")  # e.g. A1:B2 not A1:B\n\nURL_KEY_V1_RE = re.compile(r\"key=([^&#]+)\")\nURL_KEY_V2_RE = re.compile(r\"/spreadsheets/d/([a-zA-Z0-9-_]+)\")\n\n\nclass StrEnum(str, enum.Enum):\n    def __new__(cls, value, *args, **kwargs):\n        if not isinstance(value, (str, enum.auto)):\n            raise TypeError(\n                f\"Values of StrEnums must be strings: {value!r} is a {type(value)}\"\n            )\n        return super().__new__(cls, value, *args, **kwargs)\n\n    def __str__(self):\n        return str(self.value)\n\n    def _generate_next_value_(name, *_):\n        return name\n\n\nclass Dimension(StrEnum):\n    rows = \"ROWS\"\n    cols = \"COLUMNS\"\n\n\nclass MergeType(StrEnum):\n    merge_all = \"MERGE_ALL\"\n    merge_columns = \"MERGE_COLUMNS\"\n    merge_rows = \"MERGE_ROWS\"\n\n\nclass ValueRenderOption(StrEnum):\n    formatted = \"FORMATTED_VALUE\"\n    unformatted = \"UNFORMATTED_VALUE\"\n    formula = \"FORMULA\"\n\n\nclass ValueInputOption(StrEnum):\n    raw = \"RAW\"\n    user_entered = \"USER_ENTERED\"\n\n\nclass InsertDataOption(StrEnum):\n    overwrite = \"OVERWRITE\"\n    insert_rows = \"INSERT_ROWS\"\n\n\nclass DateTimeOption(StrEnum):\n    serial_number = \"SERIAL_NUMBER\"\n    formatted_string = \"FORMATTED_STRING\"\n\n\nclass MimeType(StrEnum):\n    google_sheets = \"application/vnd.google-apps.spreadsheet\"\n    pdf = \"application/pdf\"\n    excel = \"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\"\n    csv = \"text/csv\"\n    open_office_sheet = \"application/vnd.oasis.opendocument.spreadsheet\"\n    tsv = \"text/tab-separated-values\"\n    zip = \"application/zip\"\n\n\nclass ExportFormat(StrEnum):\n    PDF = MimeType.pdf\n    EXCEL = MimeType.excel\n    CSV = MimeType.csv\n    OPEN_OFFICE_SHEET = MimeType.open_office_sheet\n    TSV = MimeType.tsv\n    ZIPPED_HTML = MimeType.zip\n\n\nclass PasteType(StrEnum):\n    normal = \"PASTE_NORMAL\"\n    values = \"PASTE_VALUES\"\n    format = \"PASTE_FORMAT\"  # type: ignore\n    no_borders = \"PASTE_NO_BORDERS\"\n    formula = \"PASTE_NO_BORDERS\"\n    data_validation = \"PASTE_DATA_VALIDATION\"\n    conditional_formating = \"PASTE_CONDITIONAL_FORMATTING\"\n\n\nclass PasteOrientation(StrEnum):\n    normal = \"NORMAL\"\n    transpose = \"TRANSPOSE\"\n\n\nclass GridRangeType(StrEnum):\n    ValueRange = \"ValueRange\"\n    ListOfLists = \"ListOfLists\"\n\n\nclass ValidationConditionType(StrEnum):\n    number_greater = \"NUMBER_GREATER\"\n    number_greater_than_eq = \"NUMBER_GREATER_THAN_EQ\"\n    number_less = \"NUMBER_LESS\"\n    number_less_than_eq = \"NUMBER_LESS_THAN_EQ\"\n    number_eq = \"NUMBER_EQ\"\n    number_not_eq = \"NUMBER_NOT_EQ\"\n    number_between = \"NUMBER_BETWEEN\"\n    number_not_between = \"NUMBER_NOT_BETWEEN\"\n    text_contains = \"TEXT_CONTAINS\"\n    text_not_contains = \"TEXT_NOT_CONTAINS\"\n    text_starts_with = \"TEXT_STARTS_WITH\"\n    text_ends_with = \"TEXT_ENDS_WITH\"\n    text_eq = \"TEXT_EQ\"\n    text_is_email = \"TEXT_IS_EMAIL\"\n    text_is_url = \"TEXT_IS_URL\"\n    date_eq = \"DATE_EQ\"\n    date_before = \"DATE_BEFORE\"\n    date_after = \"DATE_AFTER\"\n    date_on_or_before = \"DATE_ON_OR_BEFORE\"\n    date_on_or_after = \"DATE_ON_OR_AFTER\"\n    date_between = \"DATE_BETWEEN\"\n    date_not_between = \"DATE_NOT_BETWEEN\"\n    date_is_valid = \"DATE_IS_VALID\"\n    one_of_range = \"ONE_OF_RANGE\"\n    one_of_list = \"ONE_OF_LIST\"\n    blank = \"BLANK\"\n    not_blank = \"NOT_BLANK\"\n    custom_formula = \"CUSTOM_FORMULA\"\n    boolean = \"BOOLEAN\"\n    text_not_eq = \"TEXT_NOT_EQ\"\n    date_not_eq = \"DATE_NOT_EQ\"\n    filter_expression = \"FILTER_EXPRESSION\"\n\n\nclass TableDirection(StrEnum):\n    table = \"TABLE\"\n    down = \"DOWN\"\n    right = \"RIGHT\"\n\n\ndef convert_credentials(credentials: Credentials) -> Credentials:\n    module = credentials.__module__\n    cls = credentials.__class__.__name__\n    if \"oauth2client\" in module and cls == \"ServiceAccountCredentials\":\n        return _convert_service_account(credentials)\n    elif \"oauth2client\" in module and cls in (\n        \"OAuth2Credentials\",\n        \"AccessTokenCredentials\",\n        \"GoogleCredentials\",\n    ):\n        return _convert_oauth(credentials)\n    elif isinstance(credentials, Credentials):\n        return credentials\n\n    raise TypeError(\n        \"Credentials need to be from either oauth2client or from google-auth.\"\n    )\n\n\ndef _convert_oauth(credentials: Any) -> Credentials:\n    return UserCredentials(\n        credentials.access_token,\n        credentials.refresh_token,\n        credentials.id_token,\n        credentials.token_uri,\n        credentials.client_id,\n        credentials.client_secret,\n        credentials.scopes,\n    )\n\n\ndef _convert_service_account(credentials: Any) -> Credentials:\n    data = credentials.serialization_data\n    data[\"token_uri\"] = credentials.token_uri\n    scopes = credentials._scopes.split() or [\n        \"https://www.googleapis.com/auth/drive\",\n        \"https://spreadsheets.google.com/feeds\",\n    ]\n\n    return ServiceAccountCredentials.from_service_account_info(data, scopes=scopes)\n\n\nT = TypeVar(\"T\")\n\n\ndef finditem(func: Callable[[T], bool], seq: Iterable[T]) -> T:\n    \"\"\"Finds and returns first item in iterable for which func(item) is True.\"\"\"\n    return next(item for item in seq if func(item))\n\n\ndef numericise(\n    value: Optional[AnyStr],\n    empty2zero: bool = False,\n    default_blank: Any = \"\",\n    allow_underscores_in_numeric_literals: bool = False,\n) -> Optional[Union[int, float, AnyStr]]:\n    \"\"\"Returns a value that depends on the input:\n\n        - Float if input is a string that can be converted to Float\n        - Integer if input is a string that can be converted to integer\n        - Zero if the input is a string that is empty and empty2zero flag is set\n        - The unmodified input value, otherwise.\n\n    Examples::\n\n        >>> numericise(\"faa\")\n        'faa'\n\n    >>> numericise(\"3\")\n    3\n\n    >>> numericise(\"3_2\", allow_underscores_in_numeric_literals=False)\n    '3_2'\n\n    >>> numericise(\"3_2\", allow_underscores_in_numeric_literals=True)\n    32\n\n    >>> numericise(\"3.1\")\n    3.1\n\n    >>> numericise(\"2,000.1\")\n    2000.1\n\n    >>> numericise(\"\", empty2zero=True)\n    0\n\n    >>> numericise(\"\", empty2zero=False)\n    ''\n\n    >>> numericise(\"\", default_blank=None)\n    >>>\n\n    >>> numericise(\"\", default_blank=\"foo\")\n    'foo'\n\n    >>> numericise(\"\")\n    ''\n\n    >>> numericise(None)\n    >>>\n    \"\"\"\n    numericised: Optional[Union[int, float, AnyStr]] = value\n    if isinstance(value, str):\n        if \"_\" in value:\n            if not allow_underscores_in_numeric_literals:\n                return value\n            value = value.replace(\"_\", \"\")\n\n        # replace comma separating thousands to match python format\n        cleaned_value = value.replace(\",\", \"\")\n        try:\n            numericised = int(cleaned_value)\n        except ValueError:\n            try:\n                numericised = float(cleaned_value)\n            except ValueError:\n                if value == \"\":\n                    if empty2zero:\n                        numericised = 0\n                    else:\n                        numericised = default_blank\n\n    return numericised\n\n\ndef numericise_all(\n    values: List[AnyStr],\n    empty2zero: bool = False,\n    default_blank: Any = \"\",\n    allow_underscores_in_numeric_literals: bool = False,\n    ignore: List[int] = [],\n) -> List[Optional[Union[int, float, AnyStr]]]:\n    \"\"\"Returns a list of numericised values from strings except those from the\n    row specified as ignore.\n\n    :param list values: Input row\n    :param bool empty2zero: (optional) Whether or not to return empty cells\n        as 0 (zero). Defaults to ``False``.\n    :param Any default_blank: Which value to use for blank cells,\n        defaults to empty string.\n    :param bool allow_underscores_in_numeric_literals: Whether or not to allow\n        visual underscores in numeric literals\n    :param list ignore: List of ints of indices of the row (index 1) to ignore\n        numericising.\n    \"\"\"\n    # in case someone explicitly passes `None` as ignored list\n    ignore = ignore or []\n\n    numericised_list = [\n        (\n            values[index]\n            if index + 1 in ignore\n            else numericise(\n                values[index],\n                empty2zero=empty2zero,\n                default_blank=default_blank,\n                allow_underscores_in_numeric_literals=allow_underscores_in_numeric_literals,\n            )\n        )\n        for index in range(len(values))\n    ]\n\n    return numericised_list\n\n\ndef rowcol_to_a1(row: int, col: int) -> str:\n    \"\"\"Translates a row and column cell address to A1 notation.\n\n    :param row: The row of the cell to be converted.\n        Rows start at index 1.\n    :type row: int, str\n\n    :param col: The column of the cell to be converted.\n        Columns start at index 1.\n    :type row: int, str\n\n    :returns: a string containing the cell's coordinates in A1 notation.\n\n    Example:\n\n    >>> rowcol_to_a1(1, 1)\n    A1\n\n    \"\"\"\n    if row < 1 or col < 1:\n        raise IncorrectCellLabel(\"({}, {})\".format(row, col))\n\n    div = col\n    column_label = \"\"\n\n    while div:\n        (div, mod) = divmod(div, 26)\n        if mod == 0:\n            mod = 26\n            div -= 1\n        column_label = chr(mod + MAGIC_NUMBER) + column_label\n\n    label = \"{}{}\".format(column_label, row)\n\n    return label\n\n\ndef a1_to_rowcol(label: str) -> Tuple[int, int]:\n    \"\"\"Translates a cell's address in A1 notation to a tuple of integers.\n\n    :param str label: A cell label in A1 notation, e.g. 'B1'.\n        Letter case is ignored.\n    :returns: a tuple containing `row` and `column` numbers. Both indexed\n              from 1 (one).\n    :rtype: tuple\n\n    Example:\n\n    >>> a1_to_rowcol('A1')\n    (1, 1)\n\n    \"\"\"\n    m = CELL_ADDR_RE.match(label)\n    if m:\n        column_label = m.group(1).upper()\n        row = int(m.group(2))\n\n        col = 0\n        for i, c in enumerate(reversed(column_label)):\n            col += (ord(c) - MAGIC_NUMBER) * (26**i)\n    else:\n        raise IncorrectCellLabel(label)\n\n    return (row, col)\n\n\nIntOrInf = Union[int, float]\n\n\ndef _a1_to_rowcol_unbounded(label: str) -> Tuple[IntOrInf, IntOrInf]:\n    \"\"\"Translates a cell's address in A1 notation to a tuple of integers.\n\n    Same as `a1_to_rowcol()` but allows for missing row or column part\n    (e.g. \"A\" for the first column)\n\n    :returns: a tuple containing `row` and `column` numbers. Both indexed\n        from 1 (one).\n    :rtype: tuple\n\n    Example:\n\n    >>> _a1_to_rowcol_unbounded('A1')\n    (1, 1)\n\n    >>> _a1_to_rowcol_unbounded('A')\n    (inf, 1)\n\n    >>> _a1_to_rowcol_unbounded('1')\n    (1, inf)\n\n    >>> _a1_to_rowcol_unbounded('ABC123')\n    (123, 731)\n\n    >>> _a1_to_rowcol_unbounded('ABC')\n    (inf, 731)\n\n    >>> _a1_to_rowcol_unbounded('123')\n    (123, inf)\n\n    >>> _a1_to_rowcol_unbounded('1A')\n    Traceback (most recent call last):\n        ...\n    gspread.exceptions.IncorrectCellLabel: 1A\n\n    >>> _a1_to_rowcol_unbounded('')\n    (inf, inf)\n\n    \"\"\"\n    m = A1_ADDR_ROW_COL_RE.match(label)\n    if m:\n        column_label, row = m.groups()\n\n        col: IntOrInf\n        if column_label:\n            col = 0\n            for i, c in enumerate(reversed(column_label.upper())):\n                col += (ord(c) - MAGIC_NUMBER) * (26**i)\n        else:\n            col = float(\"inf\")\n\n        if row:\n            row = int(row)\n        else:\n            row = float(\"inf\")\n    else:\n        raise IncorrectCellLabel(label)\n\n    return (row, col)\n\n\ndef a1_range_to_grid_range(name: str, sheet_id: Optional[int] = None) -> Dict[str, int]:\n    \"\"\"Converts a range defined in A1 notation to a dict representing\n    a `GridRange`_.\n\n    All indexes are zero-based. Indexes are half open, e.g the start\n    index is inclusive and the end index is exclusive: [startIndex, endIndex).\n\n    Missing indexes indicate the range is unbounded on that side.\n\n    .. _GridRange: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/other#GridRange\n\n    Examples::\n\n        >>> a1_range_to_grid_range('A1:A1')\n        {'startRowIndex': 0, 'endRowIndex': 1, 'startColumnIndex': 0, 'endColumnIndex': 1}\n\n    >>> a1_range_to_grid_range('A3:B4')\n    {'startRowIndex': 2, 'endRowIndex': 4, 'startColumnIndex': 0, 'endColumnIndex': 2}\n\n    >>> a1_range_to_grid_range('A:B')\n    {'startColumnIndex': 0, 'endColumnIndex': 2}\n\n    >>> a1_range_to_grid_range('A5:B')\n    {'startRowIndex': 4, 'startColumnIndex': 0, 'endColumnIndex': 2}\n\n    >>> a1_range_to_grid_range('A1')\n    {'startRowIndex': 0, 'endRowIndex': 1, 'startColumnIndex': 0, 'endColumnIndex': 1}\n\n    >>> a1_range_to_grid_range('A')\n    {'startColumnIndex': 0, 'endColumnIndex': 1}\n\n    >>> a1_range_to_grid_range('1')\n    {'startRowIndex': 0, 'endRowIndex': 1}\n\n    >>> a1_range_to_grid_range('A1', sheet_id=0)\n    {'sheetId': 0, 'startRowIndex': 0, 'endRowIndex': 1, 'startColumnIndex': 0, 'endColumnIndex': 1}\n    \"\"\"\n    start_label, _, end_label = name.partition(\":\")\n\n    start_row_index, start_column_index = _a1_to_rowcol_unbounded(start_label)\n\n    end_row_index, end_column_index = _a1_to_rowcol_unbounded(end_label or start_label)\n\n    if start_row_index > end_row_index:\n        start_row_index, end_row_index = end_row_index, start_row_index\n\n    if start_column_index > end_column_index:\n        start_column_index, end_column_index = end_column_index, start_column_index\n\n    grid_range = {\n        \"startRowIndex\": start_row_index - 1,\n        \"endRowIndex\": end_row_index,\n        \"startColumnIndex\": start_column_index - 1,\n        \"endColumnIndex\": end_column_index,\n    }\n\n    filtered_grid_range: Dict[str, int] = {\n        key: value for (key, value) in grid_range.items() if isinstance(value, int)\n    }\n\n    if sheet_id is not None:\n        filtered_grid_range[\"sheetId\"] = sheet_id\n\n    return filtered_grid_range\n\n\ndef column_letter_to_index(column: str) -> int:\n    \"\"\"Converts a column letter to its numerical index.\n\n    This is useful when using the method :meth:`gspread.worksheet.Worksheet.col_values`.\n    Which requires a column index.\n\n    This function is case-insensitive.\n\n    Raises :exc:`gspread.exceptions.InvalidInputValue` in case of invalid input.\n\n    Examples::\n\n        >>> column_letter_to_index(\"a\")\n        1\n\n    >>> column_letter_to_index(\"A\")\n    1\n\n    >>> column_letter_to_index(\"AZ\")\n    52\n\n    >>> column_letter_to_index(\"!@#$%^&\")\n    ...\n    gspread.exceptions.InvalidInputValue: invalid value: !@#$%^&, must be a column letter\n    \"\"\"\n    try:\n        (_, index) = _a1_to_rowcol_unbounded(column)\n    except IncorrectCellLabel:\n        # make it coherent and raise the same exception in case of any error\n        # from user input value\n        raise InvalidInputValue(\n            \"invalid value: {}, must be a column letter\".format(column)\n        )\n\n    if not isinstance(index, int):\n        raise InvalidInputValue(\n            \"invalid value: {}, must be a column letter\".format(column)\n        )\n\n    return index\n\n\ndef cast_to_a1_notation(method: Callable[..., T]) -> Callable[..., T]:\n    \"\"\"Decorator function casts wrapped arguments to A1 notation in range\n    method calls.\n    \"\"\"\n\n    def contains_row_cols(args: Tuple[Any, ...]) -> bool:\n        return (\n            isinstance(args[0], int)\n            and isinstance(args[1], int)\n            and isinstance(args[2], int)\n            and isinstance(args[3], int)\n        )\n\n    @wraps(method)\n    def wrapper(self: Any, *args: Any, **kwargs: Any) -> Any:\n        try:\n            if len(args) >= 4 and contains_row_cols(args):\n                # Convert to A1 notation\n                # Assuming rowcol_to_a1 has appropriate typing\n                range_start = rowcol_to_a1(*args[:2])\n                # Assuming rowcol_to_a1 has appropriate typing\n                range_end = rowcol_to_a1(*args[2:4])\n                range_name = \":\".join((range_start, range_end))\n\n                args = (range_name,) + args[4:]\n        except ValueError:\n            pass\n\n        return method(self, *args, **kwargs)\n\n    return wrapper\n\n\ndef extract_id_from_url(url: str) -> str:\n    m2 = URL_KEY_V2_RE.search(url)\n    if m2:\n        return m2.group(1)\n\n    m1 = URL_KEY_V1_RE.search(url)\n    if m1:\n        return m1.group(1)\n\n    raise NoValidUrlKeyFound\n\n\ndef wid_to_gid(wid: str) -> str:\n    \"\"\"Calculate gid of a worksheet from its wid.\"\"\"\n    widval = wid[1:] if len(wid) > 3 else wid\n    xorval = 474 if len(wid) > 3 else 31578\n    return str(int(widval, 36) ^ xorval)\n\n\ndef rightpad(row: List[Any], max_len: int, padding_value: Any = \"\") -> List[Any]:\n    pad_len = max_len - len(row)\n    return row + ([padding_value] * pad_len) if pad_len != 0 else row\n\n\ndef fill_gaps(\n    L: List[List[Any]],\n    rows: Optional[int] = None,\n    cols: Optional[int] = None,\n    padding_value: Any = \"\",\n) -> List[List[Any]]:\n    \"\"\"Fill gaps in a list of lists.\n    e.g.,::\n\n        >>> L = [\n        ... [1, 2, 3],\n        ... ]\n        >>> fill_gaps(L, 2, 4)\n        [\n            [1, 2, 3, \"\"],\n            [\"\", \"\", \"\", \"\"]\n        ]\n\n    :param L: List of lists to fill gaps in.\n    :param rows: Number of rows to fill.\n    :param cols: Number of columns to fill.\n    :param padding_value: Default value to fill gaps with.\n\n    :type L: list[list[T]]\n    :type rows: int\n    :type cols: int\n    :type padding_value: T\n\n    :return: List of lists with gaps filled.\n    :rtype: list[list[T]]:\n    \"\"\"\n    try:\n        max_cols = max(len(row) for row in L) if cols is None else cols\n        max_rows = len(L) if rows is None else rows\n\n        pad_rows = max_rows - len(L)\n\n        if pad_rows:\n            L = L + ([[]] * pad_rows)\n\n        return [rightpad(row, max_cols, padding_value=padding_value) for row in L]\n    except ValueError:\n        return [[]]\n\n\ndef cell_list_to_rect(cell_list: List[\"Cell\"]) -> List[List[Optional[str]]]:\n    if not cell_list:\n        return []\n\n    rows: Dict[int, Dict[int, Optional[str]]] = defaultdict(dict)\n\n    row_offset = min(c.row for c in cell_list)\n    col_offset = min(c.col for c in cell_list)\n\n    for cell in cell_list:\n        row = rows.setdefault(int(cell.row) - row_offset, {})\n        row[cell.col - col_offset] = cell.value\n\n    if not rows:\n        return []\n\n    all_row_keys = chain.from_iterable(row.keys() for row in rows.values())\n    rect_cols = range(max(all_row_keys) + 1)\n    rect_rows = range(max(rows.keys()) + 1)\n\n    # Return the values of the cells as a list of lists where each sublist\n    # contains all of the values for one row. The Google API requires a rectangle\n    # of updates, so if a cell isn't present in the input cell_list, then the\n    # value will be None and will not be updated.\n    return [[rows[i].get(j) for j in rect_cols] for i in rect_rows]\n\n\ndef quote(value: str, safe: str = \"\", encoding: str = \"utf-8\") -> str:\n    return uquote(value.encode(encoding), safe)\n\n\ndef absolute_range_name(sheet_name: str, range_name: Optional[str] = None) -> str:\n    \"\"\"Return an absolutized path of a range.\n\n    >>> absolute_range_name(\"Sheet1\", \"A1:B1\")\n    \"'Sheet1'!A1:B1\"\n\n    >>> absolute_range_name(\"Sheet1\", \"A1\")\n    \"'Sheet1'!A1\"\n\n    >>> absolute_range_name(\"Sheet1\")\n    \"'Sheet1'\"\n\n    >>> absolute_range_name(\"Sheet'1\")\n    \"'Sheet''1'\"\n\n    >>> absolute_range_name(\"Sheet''1\")\n    \"'Sheet''''1'\"\n\n    >>> absolute_range_name(\"''sheet12''\", \"A1:B2\")\n    \"'''''sheet12'''''!A1:B2\"\n    \"\"\"\n    sheet_name = \"'{}'\".format(sheet_name.replace(\"'\", \"''\"))\n\n    if range_name:\n        return \"{}!{}\".format(sheet_name, range_name)\n    else:\n        return sheet_name\n\n\ndef is_scalar(x: Any) -> bool:\n    \"\"\"Return True if the value is scalar.\n\n    A scalar is not a sequence but can be a string.\n\n    >>> is_scalar([])\n    False\n\n    >>> is_scalar([1, 2])\n    False\n\n    >>> is_scalar(42)\n    True\n\n    >>> is_scalar('nice string')\n    True\n\n    >>> is_scalar({})\n    True\n\n    >>> is_scalar(set())\n    True\n    \"\"\"\n    return isinstance(x, str) or not isinstance(x, Sequence)\n\n\ndef combined_merge_values(\n    worksheet_metadata: Mapping[str, Any],\n    values: List[List[Any]],\n    start_row_index: int,\n    start_col_index: int,\n) -> List[List[Any]]:\n    \"\"\"For each merged region, replace all values with the value of the top-left cell of the region.\n    e.g., replaces\n    [\n    [1, None, None],\n    [None, None, None],\n    ]\n    with\n    [\n    [1, 1, None],\n    [1, 1, None],\n    ]\n    if the top-left four cells are merged.\n\n    :param worksheet_metadata: The metadata returned by the Google API for the worksheet.\n        Should have a \"merges\" key.\n\n    :param values: The values returned by the Google API for the worksheet. 2D array.\n\n    :param start_row_index: The index of the first row of the values in the worksheet.\n        e.g., if the values are in rows 3-5, this should be 2.\n\n    :param start_col_index: The index of the first column of the values in the worksheet.\n        e.g., if the values are in columns C-E, this should be 2.\n\n    :returns: matrix of values with merged coordinates filled according to top-left value\n    :rtype: list(list(any))\n    \"\"\"\n    merges = worksheet_metadata.get(\"merges\", [])\n    # each merge has \"startRowIndex\", \"endRowIndex\", \"startColumnIndex\", \"endColumnIndex\n    new_values = [list(row) for row in values]\n\n    # max row and column indices\n    max_row_index = len(values) - 1\n    max_col_index = len(values[0]) - 1\n\n    for merge in merges:\n        merge_start_row, merge_end_row = merge[\"startRowIndex\"], merge[\"endRowIndex\"]\n        merge_start_col, merge_end_col = (\n            merge[\"startColumnIndex\"],\n            merge[\"endColumnIndex\"],\n        )\n        # subtract offset\n        merge_start_row -= start_row_index\n        merge_end_row -= start_row_index\n        merge_start_col -= start_col_index\n        merge_end_col -= start_col_index\n        # if out of bounds, ignore\n        if merge_start_row > max_row_index or merge_start_col > max_col_index:\n            continue\n        if merge_start_row < 0 or merge_start_col < 0:\n            continue\n        top_left_value = values[merge_start_row][merge_start_col]\n        row_indices = range(merge_start_row, merge_end_row)\n        col_indices = range(merge_start_col, merge_end_col)\n        for row_index in row_indices:\n            for col_index in col_indices:\n                # if out of bounds, ignore\n                if row_index > max_row_index or col_index > max_col_index:\n                    continue\n                new_values[row_index][col_index] = top_left_value\n\n    return new_values\n\n\ndef convert_hex_to_colors_dict(hex_color: str) -> Mapping[str, float]:\n    \"\"\"Convert a hex color code to RGB color values.\n\n    :param str hex_color: Hex color code in the format \"#RRGGBB\".\n\n    :returns: Dict containing the color's red, green and blue values between 0 and 1.\n    :rtype: dict\n\n    :raises:\n        ValueError: If the input hex string is not in the correct format or length.\n\n    Examples:\n        >>> convert_hex_to_colors_dict(\"#3300CC\")\n        {'red': 0.2, 'green': 0.0, 'blue': 0.8}\n\n        >>> convert_hex_to_colors_dict(\"#30C\")\n        {'red': 0.2, 'green': 0.0, 'blue': 0.8}\n\n    \"\"\"\n    hex_color = hex_color.lstrip(\"#\")\n\n    # Google API ColorStyle Reference:\n    # \"The alpha value in the Color object isn't generally supported.\"\n    # https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/other#colorstyle\n    if len(hex_color) == 8:\n        hex_color = hex_color[:-2]\n\n    # Expand 3 character hex.\n    if len(hex_color) == 3:\n        hex_color = \"\".join([char * 2 for char in hex_color])\n\n    if len(hex_color) != 6:\n        raise ValueError(\"Hex color code must be in the format '#RRGGBB'.\")\n\n    try:\n        rgb_color = {\n            \"red\": int(hex_color[0:2], 16) / 255,\n            \"green\": int(hex_color[2:4], 16) / 255,\n            \"blue\": int(hex_color[4:6], 16) / 255,\n        }\n\n        return rgb_color\n    except ValueError as ex:\n        raise ValueError(f\"Invalid character in hex color string: #{hex_color}\") from ex\n\n\ndef convert_colors_to_hex_value(\n    red: float = 0.0, green: float = 0.0, blue: float = 0.0\n) -> str:\n    \"\"\"Convert RGB color values to a hex color code.\n\n    :param float red: Red color value (0-1).\n    :param float green: Green color value (0-1).\n    :param float blue: Blue color value (0-1).\n\n    :returns: Hex color code in the format \"#RRGGBB\".\n    :rtype: str\n\n    :raises:\n        ValueError: If any color value is out of the accepted range (0-1).\n\n    Example:\n\n        >>> convert_colors_to_hex_value(0.2, 0, 0.8)\n        '#3300CC'\n\n        >>> convert_colors_to_hex_value(green=0.5)\n        '#008000'\n    \"\"\"\n\n    def to_hex(value: float) -> str:\n        \"\"\"\n        Convert an integer to a 2-digit uppercase hex string.\n        \"\"\"\n        hex_value = hex(round(value * 255))[2:]\n        return hex_value.upper().zfill(2)\n\n    if any(value < 0 or value > 1 for value in (red, green, blue)):\n        raise ValueError(\"Color value out of accepted range 0-1.\")\n\n    return f\"#{to_hex(red)}{to_hex(green)}{to_hex(blue)}\"\n\n\ndef is_full_a1_notation(range_name: str) -> bool:\n    \"\"\"Check if the range name is a full A1 notation.\n    \"A1:B2\", \"Sheet1!A1:B2\" are full A1 notations\n    \"A1:B\", \"A1\" are not\n\n    Args:\n        range_name (str): The range name to check.\n\n    Returns:\n        bool: True if the range name is a full A1 notation, False otherwise.\n\n    Examples:\n\n        >>> is_full_a1_notation(\"A1:B2\")\n        True\n\n        >>> is_full_a1_notation(\"A1:B\")\n        False\n    \"\"\"\n    return A1_ADDR_FULL_RE.search(range_name) is not None\n\n\ndef get_a1_from_absolute_range(range_name: str) -> str:\n    \"\"\"Get the A1 notation from an absolute range name.\n    \"Sheet1!A1:B2\" -> \"A1:B2\"\n    \"A1:B2\" -> \"A1:B2\"\n\n    Args:\n        range_name (str): The range name to check.\n\n    Returns:\n        str: The A1 notation of the range name stripped of the sheet.\n    \"\"\"\n    if \"!\" in range_name:\n        return range_name.split(\"!\")[1]\n    return range_name\n\n\ndef to_records(\n    headers: Iterable[Any] = [], values: Iterable[Iterable[Any]] = [[]]\n) -> List[Dict[str, Union[str, int, float]]]:\n    \"\"\"Builds the list of dictionaries, all of them have the headers sequence as keys set,\n    each key is associated to the corresponding value for the same index in each list from\n    the matrix ``values``.\n    There are as many dictionaries as they are entry in the list of given values.\n\n    :param list: headers the key set for all dictionaries\n    :param list: values a matrix of values\n\n    Examples::\n\n        >>> to_records([\"name\", \"City\"], [[\"Spiderman\", \"NY\"], [\"Batman\", \"Gotham\"]])\n        [\n            {\n                \"Name\": \"Spiderman\",\n                \"City\": \"NY\",\n            },\n            {\n                \"Name\": \"Batman\",\n                \"City\": \"Gotham\",\n            },\n        ]\n    \"\"\"\n\n    return [dict(zip(headers, row)) for row in values]\n\n\ndef _expand_right(values: List[List[str]], start: int, end: int, row: int) -> int:\n    \"\"\"This is a private function, returning the column index of the last non empty cell\n    on the given row.\n\n    Search starts from ``start`` index column.\n    Search ends on ``end`` index column.\n    Searches only in the row pointed by ``row``.\n    \"\"\"\n    try:\n        return values[row].index(\"\", start, end) - 1\n    except ValueError:\n        return end\n\n\ndef _expand_bottom(values: List[List[str]], start: int, end: int, col: int) -> int:\n    \"\"\"This is a private function, returning the row index of the last non empty cell\n    on the given column.\n\n    Search starts from ``start`` index row.\n    Search ends on ``end`` index row.\n    Searches only in the column pointed by ``col``.\n    \"\"\"\n    for rows in range(start, end):\n        # in case we try to look further than last row\n        if rows >= len(values):\n            return len(values) - 1\n\n        # check if cell is empty (or the row => empty cell)\n        if col >= len(values[rows]) or values[rows][col] == \"\":\n            return rows - 1\n\n    return end - 1\n\n\ndef find_table(\n    values: List[List[str]],\n    start_range: str,\n    direction: TableDirection = TableDirection.table,\n) -> List[List[str]]:\n    \"\"\"Expands a list of values based on non-null adjacent cells.\n\n    Expand can be done in 3 directions defined in :class:`~gspread.utils.TableDirection`\n\n        * ``TableDirection.right``: expands right until the first empty cell\n        * ``TableDirection.down``: expands down until the first empty cell\n        * ``TableDirection.table``: expands right until the first empty cell and down until first empty cell\n\n    In case of empty result an empty list is restuned.\n\n    When the given ``start_range`` is outside the given matrix of values the exception\n    :class:`~gspread.exceptions.InvalidInputValue` is raised.\n\n    Example::\n\n        values = [\n            ['', '',   '',   '', ''  ],\n            ['', 'B2', 'C2', '', 'E2'],\n            ['', 'B3', 'C3', '', 'E3'],\n            ['', ''  , ''  , '', 'E4'],\n        ]\n        >>> utils.find_table(TableDirection.table, 'B2')\n        [\n            ['B2', 'C2'],\n            ['B3', 'C3'],\n        ]\n\n\n    .. note::\n\n       the ``TableDirection.table`` will look right from starting cell then look down from starting cell.\n       It will not check cells located inside the table. This could lead to\n       potential empty values located in the middle of the table.\n\n    .. warning::\n\n       Given values must be padded with `''` empty values.\n\n    :param list[list] values: values where to find the table.\n    :param gspread.utils.TableDirection direction: the expand direction.\n    :param str start_range: the starting cell range.\n    :rtype list(list): the resulting matrix\n    \"\"\"\n    row, col = a1_to_rowcol(start_range)\n\n    # a1_to_rowcol returns coordinates starting form 1\n    row -= 1\n    col -= 1\n\n    if row >= len(values):\n        raise InvalidInputValue(\n            \"given row for start_range is outside given values: start range row ({}) >= rows in values {}\".format(\n                row, len(values)\n            )\n        )\n\n    if col >= len(values[row]):\n        raise InvalidInputValue(\n            \"given column for start_range is outside given values: start range column ({}) >= columns in values {}\".format(\n                col, len(values[row])\n            )\n        )\n\n    if direction == TableDirection.down:\n        rightMost = col\n        bottomMost = _expand_bottom(values, row, len(values), col)\n\n    if direction == TableDirection.right:\n        bottomMost = row\n        rightMost = _expand_right(values, col, len(values[row]), row)\n\n    if direction == TableDirection.table:\n        rightMost = _expand_right(values, col, len(values[row]), row)\n        bottomMost = _expand_bottom(values, row, len(values), col)\n\n    result = []\n\n    # build resulting array\n    for rows in values[row : bottomMost + 1]:\n        result.append(rows[col : rightMost + 1])\n\n    return result\n\n\n# SHOULD NOT BE NEEDED UNTIL NEXT MAJOR VERSION\n# DEPRECATION_WARNING_TEMPLATE = (\n#     \"[Deprecated][in version {v_deprecated}]: {msg_deprecated}\"\n# )\n\n\n# SILENCE_WARNINGS_ENV_KEY = \"GSPREAD_SILENCE_WARNINGS\"\n\n\n# def deprecation_warning(version: str, msg: str) -> None:\n#     \"\"\"Emit a deprecation warning.\n\n#     ..note::\n\n#         This warning can be silenced by setting the environment variable:\n#         GSPREAD_SILENCE_WARNINGS=1\n#     \"\"\"\n\n#     # do not emit warning if env variable is set specifically to 1\n#     if os.getenv(SILENCE_WARNINGS_ENV_KEY, \"0\") == \"1\":\n#         return\n\n#     warnings.warn(\n#         DEPRECATION_WARNING_TEMPLATE.format(v_deprecated=version, msg_deprecated=msg),\n#         DeprecationWarning,\n#         4,  # showd the 4th stack: [1]:current->[2]:deprecation_warning->[3]:<gspread method/function>->[4]:<user's code>\n#     )\n\n\nif __name__ == \"__main__\":\n    import doctest\n\n    doctest.testmod()\n"
  },
  {
    "path": "gspread/worksheet.py",
    "content": "\"\"\"\ngspread.worksheet\n~~~~~~~~~~~~~~~~~\n\nThis module contains common worksheets' models.\n\n\"\"\"\n\nimport re\nimport warnings\nfrom collections import Counter\nfrom typing import (\n    TYPE_CHECKING,\n    Any,\n    Callable,\n    Dict,\n    Iterable,\n    Iterator,\n    List,\n    Literal,\n    Mapping,\n    MutableMapping,\n    Optional,\n    Sequence,\n    Tuple,\n    Type,\n    TypedDict,\n    TypeVar,\n    Union,\n)\n\nfrom .cell import Cell\nfrom .exceptions import GSpreadException\nfrom .http_client import HTTPClient, ParamsType\nfrom .urls import WORKSHEET_DRIVE_URL\nfrom .utils import (\n    DateTimeOption,\n    Dimension,\n    GridRangeType,\n    InsertDataOption,\n    MergeType,\n    PasteOrientation,\n    PasteType,\n    T,\n    TableDirection,\n    ValidationConditionType,\n    ValueInputOption,\n    ValueRenderOption,\n    a1_range_to_grid_range,\n    a1_to_rowcol,\n    absolute_range_name,\n    cast_to_a1_notation,\n    cell_list_to_rect,\n    combined_merge_values,\n    convert_colors_to_hex_value,\n    convert_hex_to_colors_dict,\n    fill_gaps,\n    find_table,\n    finditem,\n    get_a1_from_absolute_range,\n    is_full_a1_notation,\n    numericise_all,\n    rowcol_to_a1,\n    to_records,\n)\n\nif TYPE_CHECKING is True:\n    from .spreadsheet import Spreadsheet\n\nCellFormat = TypedDict(\n    \"CellFormat\",\n    {\n        \"range\": str,\n        \"format\": Mapping[str, Any],\n    },\n)\n\n\nBatchData = TypedDict(\"BatchData\", {\"range\": str, \"values\": List[List[Any]]})\n\nJSONResponse = MutableMapping[str, Any]\nValueRangeType = TypeVar(\"ValueRangeType\", bound=\"ValueRange\")\n\n\nclass ValueRange(list):\n    \"\"\"The class holds the returned values.\n\n    This class inherit the :const:`list` object type.\n    It behaves exactly like a list.\n\n    The values are stored in a matrix.\n\n    The property :meth:`gspread.worksheet.ValueRange.major_dimension`\n    holds the major dimension of the first list level.\n\n    The inner lists will contain the actual values.\n\n    Examples::\n\n        >>> worksheet.get(\"A1:B2\")\n        [\n            [\n                \"A1 value\",\n                \"B1 values\",\n            ],\n            [\n                \"A2 value\",\n                \"B2 value\",\n            ]\n        ]\n\n        >>> worksheet.get(\"A1:B2\").major_dimension\n        ROW\n\n    .. note::\n\n       This class should never be instantiated manually.\n       It will be instantiated using the response from the sheet API.\n    \"\"\"\n\n    _json: MutableMapping[str, str] = {}\n\n    @classmethod\n    def from_json(cls: Type[ValueRangeType], json: Mapping[str, Any]) -> ValueRangeType:\n        values = json.get(\"values\", [])\n        new_obj = cls(values)\n        new_obj._json = {\n            \"range\": json[\"range\"],\n            \"majorDimension\": json[\"majorDimension\"],\n        }\n\n        return new_obj\n\n    @property\n    def range(self) -> str:\n        \"\"\"The range of the values\"\"\"\n        return self._json[\"range\"]\n\n    @property\n    def major_dimension(self) -> str:\n        \"\"\"The major dimension of this range\n\n        Can be one of:\n\n        * ``ROW``: the first list level holds rows of values\n        * ``COLUMNS``: the first list level holds columns of values\n        \"\"\"\n        return self._json[\"majorDimension\"]\n\n    def first(self, default: Optional[str] = None) -> Optional[str]:\n        \"\"\"Returns the value of a first cell in a range.\n\n        If the range is empty, return the default value.\n        \"\"\"\n        try:\n            return self[0][0]\n        except IndexError:\n            return default\n\n\nclass Worksheet:\n    \"\"\"The class that represents a single sheet in a spreadsheet\n    (aka \"worksheet\").\n    \"\"\"\n\n    def __init__(\n        self,\n        spreadsheet: \"Spreadsheet\",\n        properties: MutableMapping[str, Any],\n        spreadsheet_id: Optional[str] = None,\n        client: Optional[HTTPClient] = None,\n    ):\n        # This object is not intended to be created manually\n        # only using gspread code like: spreadsheet.get_worksheet(0)\n        # keep it backward compatible signarure but raise with explicit message\n        # in case of missing new attributes\n\n        if spreadsheet_id is None or \"\":\n            raise RuntimeError(\n                \"\"\"Missing spreadsheet_id parameter, it must be provided with a\n                valid spreadsheet ID.\n                Please allocate new Worksheet object using method like:\n                spreadsheet.get_worksheet(0)\n                \"\"\"\n            )\n\n        if client is None or not isinstance(client, HTTPClient):\n            raise RuntimeError(\n                \"\"\"Missing HTTP Client, it must be provided with a\n                valid instance of type gspread.http_client.HTTPClient .\n                Please allocate new Worksheet object using method like:\n                spreadsheet.get_worksheet(0)\n                \"\"\"\n            )\n\n        self.spreadsheet_id = spreadsheet_id\n        self.client = client\n        self._properties = properties\n\n        # kept for backward compatibility - publicly available\n        # do not use if possible.\n        self._spreadsheet = spreadsheet\n\n    def __repr__(self) -> str:\n        return \"<{} {} id:{}>\".format(\n            self.__class__.__name__,\n            repr(self.title),\n            self.id,\n        )\n\n    @property\n    def id(self) -> int:\n        \"\"\"Worksheet ID.\"\"\"\n        return self._properties[\"sheetId\"]\n\n    @property\n    def spreadsheet(self) -> \"Spreadsheet\":\n        \"\"\"Parent spreadsheet\"\"\"\n        return self._spreadsheet\n\n    @property\n    def title(self) -> str:\n        \"\"\"Worksheet title.\"\"\"\n        return self._properties[\"title\"]\n\n    @property\n    def url(self) -> str:\n        \"\"\"Worksheet URL.\"\"\"\n        return WORKSHEET_DRIVE_URL % (self.spreadsheet_id, self.id)\n\n    @property\n    def index(self) -> int:\n        \"\"\"Worksheet index.\"\"\"\n        return self._properties[\"index\"]\n\n    @property\n    def isSheetHidden(self) -> bool:\n        \"\"\"Worksheet hidden status.\"\"\"\n        # if the property is not set then hidden=False\n        return self._properties.get(\"hidden\", False)\n\n    @property\n    def row_count(self) -> int:\n        \"\"\"Number of rows.\"\"\"\n        return self._properties[\"gridProperties\"][\"rowCount\"]\n\n    @property\n    def col_count(self) -> int:\n        \"\"\"Number of columns.\n\n        .. warning::\n\n           This value is fetched when opening the worksheet.\n           This is not dynamically updated when adding columns, yet.\n        \"\"\"\n        return self._properties[\"gridProperties\"][\"columnCount\"]\n\n    @property\n    def column_count(self) -> int:\n        \"\"\"Number of columns\"\"\"\n        return self.col_count\n\n    @property\n    def frozen_row_count(self) -> int:\n        \"\"\"Number of frozen rows.\"\"\"\n        return self._properties[\"gridProperties\"].get(\"frozenRowCount\", 0)\n\n    @property\n    def frozen_col_count(self) -> int:\n        \"\"\"Number of frozen columns.\"\"\"\n        return self._properties[\"gridProperties\"].get(\"frozenColumnCount\", 0)\n\n    @property\n    def is_gridlines_hidden(self) -> bool:\n        \"\"\"Whether or not gridlines hidden. Boolean.\n        True if hidden. False if shown.\n        \"\"\"\n        return self._properties[\"gridProperties\"].get(\"hideGridlines\", False)\n\n    @property\n    def tab_color(self) -> Optional[str]:\n        \"\"\"Tab color style. Hex with RGB color values.\"\"\"\n        return self.get_tab_color()\n\n    def get_tab_color(self) -> Optional[str]:\n        \"\"\"Tab color style in hex format. String.\"\"\"\n        tab_color = self._properties.get(\"tabColorStyle\", {}).get(\"rgbColor\", None)\n        if tab_color is None:\n            return None\n        return convert_colors_to_hex_value(**tab_color)\n\n    def _get_sheet_property(self, property: str, default_value: Optional[T]) -> T:\n        \"\"\"return a property of this worksheet or default value if not found\"\"\"\n        meta = self.client.fetch_sheet_metadata(self.spreadsheet_id)\n        sheet = finditem(\n            lambda x: x[\"properties\"][\"sheetId\"] == self.id, meta[\"sheets\"]\n        )\n\n        return sheet.get(property, default_value)\n\n    def acell(\n        self,\n        label: str,\n        value_render_option: ValueRenderOption = ValueRenderOption.formatted,\n    ) -> Cell:\n        \"\"\"Returns an instance of a :class:`gspread.cell.Cell`.\n\n        :param label: Cell label in A1 notation\n                      Letter case is ignored.\n        :type label: str\n        :param value_render_option: (optional) Determines how values should be\n                                    rendered in the output. See\n                                    `ValueRenderOption`_ in the Sheets API.\n        :type value_render_option: :class:`~gspread.utils.ValueRenderOption`\n\n        .. _ValueRenderOption: https://developers.google.com/sheets/api/reference/rest/v4/ValueRenderOption\n\n        Example:\n\n        >>> worksheet.acell('A1')\n        <Cell R1C1 \"I'm cell A1\">\n        \"\"\"\n        return self.cell(\n            *(a1_to_rowcol(label)), value_render_option=value_render_option\n        )\n\n    def cell(\n        self,\n        row: int,\n        col: int,\n        value_render_option: ValueRenderOption = ValueRenderOption.formatted,\n    ) -> Cell:\n        \"\"\"Returns an instance of a :class:`gspread.cell.Cell` located at\n        `row` and `col` column.\n\n        :param row: Row number.\n        :type row: int\n        :param col: Column number.\n        :type col: int\n        :param value_render_option: (optional) Determines how values should be\n                                    rendered in the output. See\n                                    `ValueRenderOption`_ in the Sheets API.\n        :type value_render_option: :class:`~gspread.utils.ValueRenderOption`\n\n        .. _ValueRenderOption: https://developers.google.com/sheets/api/reference/rest/v4/ValueRenderOption\n\n        Example:\n\n        >>> worksheet.cell(1, 1)\n        <Cell R1C1 \"I'm cell A1\">\n\n        :rtype: :class:`gspread.cell.Cell`\n        \"\"\"\n        try:\n            data = self.get(\n                rowcol_to_a1(row, col),\n                value_render_option=value_render_option,\n                return_type=GridRangeType.ValueRange,\n            )\n\n            # we force a return type to GridRangeType.ValueRange\n            # help typing tool to see it too :-)\n            if isinstance(data, ValueRange):\n                value = data.first()\n            else:\n                raise RuntimeError(\"returned data must be of type ValueRange\")\n\n        except KeyError:\n            value = \"\"\n\n        return Cell(row, col, value)\n\n    @cast_to_a1_notation\n    def range(self, name: str = \"\") -> List[Cell]:\n        \"\"\"Returns a list of :class:`gspread.cell.Cell` objects from a specified range.\n\n        :param name: A string with range value in A1 notation (e.g. 'A1:A5')\n                     or the named range to fetch.\n        :type name: str\n\n        Alternatively, you may specify numeric boundaries. All values\n        index from 1 (one):\n\n        :param int first_row: First row number\n        :param int first_col: First column number\n        :param int last_row: Last row number\n        :param int last_col: Last column number\n\n        :rtype: list\n\n        Example::\n\n            >>> # Using A1 notation\n            >>> worksheet.range('A1:B7')\n            [<Cell R1C1 \"42\">, ...]\n\n            >>> # Same with numeric boundaries\n            >>> worksheet.range(1, 1, 7, 2)\n            [<Cell R1C1 \"42\">, ...]\n\n            >>> # Named ranges work as well\n            >>> worksheet.range('NamedRange')\n            [<Cell R1C1 \"42\">, ...]\n\n            >>> # All values in a single API call\n            >>> worksheet.range()\n            [<Cell R1C1 'Hi mom'>, ...]\n\n        \"\"\"\n        range_label = absolute_range_name(self.title, name)\n\n        data = self.client.values_get(self.spreadsheet_id, range_label)\n\n        if \":\" not in name:\n            name = data.get(\"range\", \"\")\n            if \"!\" in name:\n                name = name.split(\"!\")[1]\n\n        grid_range = a1_range_to_grid_range(name)\n\n        values = data.get(\"values\", [])\n\n        row_offset = grid_range.get(\"startRowIndex\", 0)\n        column_offset = grid_range.get(\"startColumnIndex\", 0)\n        last_row = grid_range.get(\"endRowIndex\", self.row_count)\n        last_column = grid_range.get(\"endColumnIndex\", self.col_count)\n\n        if last_row is not None:\n            last_row -= row_offset\n\n        if last_column is not None:\n            last_column -= column_offset\n\n        rect_values = fill_gaps(\n            values,\n            rows=last_row,\n            cols=last_column,\n        )\n\n        return [\n            Cell(row=i + row_offset + 1, col=j + column_offset + 1, value=value)\n            for i, row in enumerate(rect_values)\n            for j, value in enumerate(row)\n        ]\n\n    def get_values(\n        self,\n        range_name: Optional[str] = None,\n        major_dimension: Optional[Dimension] = None,\n        value_render_option: Optional[ValueRenderOption] = None,\n        date_time_render_option: Optional[DateTimeOption] = None,\n        combine_merged_cells: bool = False,\n        maintain_size: bool = False,\n        pad_values: bool = True,\n        return_type: GridRangeType = GridRangeType.ListOfLists,\n    ) -> Union[ValueRange, List[List[Any]]]:\n        \"\"\"Alias for :meth:`~gspread.worksheet.Worksheet.get`...\n\n        with ``return_type`` set to ``List[List[Any]]``\n        and ``pad_values`` set to ``True``\n        (legacy method)\n        \"\"\"\n        return self.get(\n            range_name=range_name,\n            major_dimension=major_dimension,\n            value_render_option=value_render_option,\n            date_time_render_option=date_time_render_option,\n            combine_merged_cells=combine_merged_cells,\n            maintain_size=maintain_size,\n            pad_values=pad_values,\n            return_type=return_type,\n        )\n\n    def get_all_values(\n        self,\n        range_name: Optional[str] = None,\n        major_dimension: Optional[Dimension] = None,\n        value_render_option: Optional[ValueRenderOption] = None,\n        date_time_render_option: Optional[DateTimeOption] = None,\n        combine_merged_cells: bool = False,\n        maintain_size: bool = False,\n        pad_values: bool = True,\n        return_type: GridRangeType = GridRangeType.ListOfLists,\n    ) -> Union[ValueRange, List[List[Any]]]:\n        \"\"\"Alias to :meth:`~gspread.worksheet.Worksheet.get_values`\"\"\"\n        return self.get_values(\n            range_name=range_name,\n            major_dimension=major_dimension,\n            value_render_option=value_render_option,\n            date_time_render_option=date_time_render_option,\n            combine_merged_cells=combine_merged_cells,\n            maintain_size=maintain_size,\n            pad_values=pad_values,\n            return_type=return_type,\n        )\n\n    def get_all_records(\n        self,\n        head: int = 1,\n        expected_headers: Optional[List[str]] = None,\n        value_render_option: Optional[ValueRenderOption] = None,\n        default_blank: Any = \"\",\n        numericise_ignore: Iterable[Union[str, int]] = [],\n        allow_underscores_in_numeric_literals: bool = False,\n        empty2zero: bool = False,\n    ) -> List[Dict[str, Union[int, float, str]]]:\n        \"\"\"Returns a list of dictionaries, all of them having the contents of\n        the spreadsheet with the head row as keys and each of these\n        dictionaries holding the contents of subsequent rows of cells as\n        values.\n\n        This method uses the function :func:`gspread.utils.to_records` to build the resulting\n        records. It mainly wraps around the function and handles the simplest use case\n        using a header row (default = 1) and the rest of the entire sheet.\n\n        .. note::\n\n           For more particular use-cases, please get your dataset, your headers and\n           then use the function :func:`gspread.utils.to_records` to build the records.\n\n        Cell values are numericised (strings that can be read as ints or floats\n        are converted), unless specified in numericise_ignore\n\n        :param int head: (optional) Determines which row to use as keys,\n            starting from 1 following the numeration of the spreadsheet.\n        :param list expected_headers: (optional) List of expected headers, they must be unique.\n\n            .. note::\n\n                Returned dictionaries will contain all headers even if not included in this list.\n        :param value_render_option: (optional) Determines how values should\n            be rendered in the output. See `ValueRenderOption`_ in\n            the Sheets API.\n        :type value_render_option: :class:`~gspread.utils.ValueRenderOption`\n        :param Any default_blank: (optional) Determines which value to use for\n            blank cells, defaults to empty string.\n        :param list numericise_ignore: (optional) List of ints of indices of\n            the columns (starting at 1) to ignore numericising, special use\n            of ['all'] to ignore numericising on all columns.\n        :param bool allow_underscores_in_numeric_literals: (optional) Allow\n            underscores in numeric literals, as introduced in PEP 515\n        :param bool empty2zero: (optional) Determines whether empty cells are\n            converted to zeros when numericised, defaults to False.\n\n\n        Examples::\n\n            # Sheet data:\n            #      A    B    C\n            #\n            # 1    A1   B2   C3\n            # 2    A6   B7   C8\n            # 3    A11  B12  C13\n\n            # Read all rows from the sheet\n            >>> worksheet.get_all_records()\n            [\n                {\"A1\": \"A6\", \"B2\": \"B7\", \"C3\": \"C8\"},\n                {\"A1\": \"A11\", \"B2\": \"B12\", \"C3\": \"C13\"}\n            ]\n        \"\"\"\n        entire_sheet = self.get(\n            value_render_option=value_render_option,\n            pad_values=True,\n        )\n        if entire_sheet == [[]]:\n            # see test_get_all_records_with_all_values_blank\n            #  we don't know the length of the sheet so we return []\n            return []\n\n        keys = entire_sheet[head - 1]\n        values = entire_sheet[head:]\n\n        def get_dupes(items):\n            counts = Counter(items)\n            return [item for item in counts if counts[item] > 1]\n\n        if expected_headers is None:\n            duplicates = get_dupes(keys)\n            if duplicates:\n                raise GSpreadException(\n                    f\"the header row in the worksheet contains duplicates: {duplicates}\"\n                    \"To manually set the header row, use the `expected_headers` \"\n                    \"parameter of `get_all_records()`\"\n                )\n        else:\n            duplicates = get_dupes(expected_headers)\n            if duplicates:\n                raise GSpreadException(\n                    f\"the given 'expected_headers' contains duplicates: {duplicates}\"\n                )\n            # expected headers must be a subset of the actual headers\n            if not all(header in keys for header in expected_headers):\n                raise GSpreadException(\n                    \"the given 'expected_headers' contains unknown headers: \"\n                    f\"{set(expected_headers) - set(keys)}\"\n                )\n\n        if numericise_ignore == [\"all\"]:\n            pass\n        else:\n            values = [\n                numericise_all(\n                    row,\n                    empty2zero,\n                    default_blank,\n                    allow_underscores_in_numeric_literals,\n                    numericise_ignore,  # type: ignore\n                )\n                for row in values\n            ]\n\n        return to_records(keys, values)\n\n    def get_all_cells(self) -> List[Cell]:\n        \"\"\"Returns a list of all `Cell` of the current sheet.\"\"\"\n\n        return self.range()\n\n    def row_values(\n        self,\n        row: int,\n        major_dimension: Optional[Dimension] = None,\n        value_render_option: Optional[ValueRenderOption] = None,\n        date_time_render_option: Optional[DateTimeOption] = None,\n    ) -> List[str]:\n        \"\"\"Returns a list of all values in a `row`.\n\n        Empty cells in this list will be rendered as :const:`None`.\n\n        :param int row: Row number (one-based).\n\n        :param str major_dimension: (optional) The major dimension of the\n            values. `Dimension.rows` (\"ROWS\") or `Dimension.cols` (\"COLUMNS\").\n            Defaults to Dimension.rows\n        :type major_dimension: :class:`~gspread.utils.Dimension`\n\n        :param value_render_option: (optional) Determines how values should\n            be rendered in the output. See `ValueRenderOption`_ in\n            the Sheets API.\n\n            Possible values are:\n\n            ``ValueRenderOption.formatted``\n                (default) Values will be calculated and formatted according\n                to the cell's formatting. Formatting is based on the\n                spreadsheet's locale, not the requesting user's locale.\n\n            ``ValueRenderOption.unformatted``\n                Values will be calculated, but not formatted in the reply.\n                For example, if A1 is 1.23 and A2 is =A1 and formatted as\n                currency, then A2 would return the number 1.23.\n\n            ``ValueRenderOption.formula``\n                Values will not be calculated. The reply will include\n                the formulas. For example, if A1 is 1.23 and A2 is =A1 and\n                formatted as currency, then A2 would return \"=A1\".\n\n            .. _ValueRenderOption: https://developers.google.com/sheets/api/reference/rest/v4/ValueRenderOption\n\n        :type value_render_option: :class:`~gspread.utils.ValueRenderOption`\n\n        :param date_time_render_option: (optional) How dates, times, and\n            durations should be represented in the output.\n\n            Possible values are:\n\n            ``DateTimeOption.serial_number``\n                (default) Instructs date, time, datetime, and duration fields\n                to be output as doubles in \"serial number\" format,\n                as popularized by Lotus 1-2-3.\n\n            ``DateTimeOption.formatted_string``\n                Instructs date, time, datetime, and duration fields to be output\n                as strings in their given number format\n                (which depends on the spreadsheet locale).\n\n            .. note::\n\n                This is ignored if ``value_render_option`` is ``ValueRenderOption.formatted``.\n\n            The default ``date_time_render_option`` is ``DateTimeOption.serial_number``.\n        :type date_time_render_option: :class:`~gspread.utils.DateTimeOption`\n        \"\"\"\n        try:\n            data = self.get(\n                \"A{}:{}\".format(row, row),\n                major_dimension,\n                value_render_option,\n                date_time_render_option,\n            )\n            return data[0] if data else []\n        except KeyError:\n            return []\n\n    def col_values(\n        self,\n        col: int,\n        value_render_option: ValueRenderOption = ValueRenderOption.formatted,\n    ) -> List[Optional[Union[int, float, str]]]:\n        \"\"\"Returns a list of all values in column `col`.\n\n        Empty cells in this list will be rendered as :const:`None`.\n\n        :param int col: Column number (one-based).\n        :param str value_render_option: (optional) Determines how values should\n            be rendered in the output. See `ValueRenderOption`_ in\n            the Sheets API.\n        :type value_render_option: :class:`~gspread.utils.ValueRenderOption`\n\n        .. _ValueRenderOption: https://developers.google.com/sheets/api/reference/rest/v4/ValueRenderOption\n        \"\"\"\n\n        start_label = rowcol_to_a1(1, col)\n        range_label = \"{}:{}\".format(start_label, start_label[:-1])\n\n        range_name = absolute_range_name(self.title, range_label)\n\n        data = self.client.values_get(\n            self.spreadsheet_id,\n            range_name,\n            params={\n                \"valueRenderOption\": value_render_option,\n                \"majorDimension\": Dimension.cols,\n            },\n        )\n\n        try:\n            return data[\"values\"][0]\n        except KeyError:\n            return []\n\n    def update_acell(self, label: str, value: Union[int, float, str]) -> JSONResponse:\n        \"\"\"Updates the value of a cell.\n\n        :param str label: Cell label in A1 notation.\n        :param value: New value.\n\n        Example::\n\n            worksheet.update_acell('A1', '42')\n        \"\"\"\n        return self.update_cell(*(a1_to_rowcol(label)), value=value)\n\n    def update_cell(\n        self, row: int, col: int, value: Union[int, float, str]\n    ) -> JSONResponse:\n        \"\"\"Updates the value of a cell.\n\n        :param int row: Row number.\n        :param int col: Column number.\n        :param value: New value.\n\n        Example::\n\n            worksheet.update_cell(1, 1, '42')\n        \"\"\"\n        range_name = absolute_range_name(self.title, rowcol_to_a1(row, col))\n\n        data = self.client.values_update(\n            self.spreadsheet_id,\n            range_name,\n            params={\"valueInputOption\": ValueInputOption.user_entered},\n            body={\"values\": [[value]]},\n        )\n\n        return data\n\n    def update_cells(\n        self,\n        cell_list: List[Cell],\n        value_input_option: ValueInputOption = ValueInputOption.raw,\n    ) -> Mapping[str, Any]:\n        \"\"\"Updates many cells at once.\n\n        :param list cell_list: List of :class:`gspread.cell.Cell` objects to update.\n        :param  value_input_option: (optional) How the input data should be\n            interpreted. Possible values are:\n\n            ``ValueInputOption.raw``\n                (default) The values the user has entered will not be parsed and will be\n                stored as-is.\n\n            ``ValueInputOption.user_entered``\n                The values will be parsed as if the user typed them into the\n                UI. Numbers will stay as numbers, but strings may be converted\n                to numbers, dates, etc. following the same rules that are\n                applied when entering text into a cell via\n                the Google Sheets UI.\n\n            See `ValueInputOption`_ in the Sheets API.\n\n        :type value_input_option: :namedtuple:`~gspread.utils.ValueInputOption`\n\n        .. _ValueInputOption: https://developers.google.com/sheets/api/reference/rest/v4/ValueInputOption\n\n        Example::\n\n            # Select a range\n            cell_list = worksheet.range('A1:C7')\n\n            for cell in cell_list:\n                cell.value = 'O_o'\n\n            # Update in batch\n            worksheet.update_cells(cell_list)\n        \"\"\"\n        values_rect = cell_list_to_rect(cell_list)\n\n        start = rowcol_to_a1(\n            min(c.row for c in cell_list), min(c.col for c in cell_list)\n        )\n        end = rowcol_to_a1(max(c.row for c in cell_list), max(c.col for c in cell_list))\n\n        range_name = absolute_range_name(self.title, \"{}:{}\".format(start, end))\n\n        data = self.client.values_update(\n            self.spreadsheet_id,\n            range_name,\n            params={\"valueInputOption\": value_input_option},\n            body={\"values\": values_rect},\n        )\n\n        return data\n\n    def get(\n        self,\n        range_name: Optional[str] = None,\n        major_dimension: Optional[Dimension] = None,\n        value_render_option: Optional[ValueRenderOption] = None,\n        date_time_render_option: Optional[DateTimeOption] = None,\n        combine_merged_cells: bool = False,\n        maintain_size: bool = False,\n        pad_values: bool = False,\n        return_type: GridRangeType = GridRangeType.ValueRange,\n    ) -> Union[ValueRange, List[List[str]]]:\n        \"\"\"Reads values of a single range or a cell of a sheet.\n\n        Returns a ValueRange (list of lists) containing all values from a specified range or cell\n\n        By default values are returned as strings. See ``value_render_option``\n        to change the default format.\n\n        :param str range_name: (optional) Cell range in the A1 notation or\n            a named range. If not specified the method returns values from all non empty cells.\n\n        :param str major_dimension: (optional) The major dimension of the\n            values. `Dimension.rows` (\"ROWS\") or `Dimension.cols` (\"COLUMNS\").\n            Defaults to Dimension.rows\n        :type major_dimension: :class:`~gspread.utils.Dimension`\n\n        :param value_render_option: (optional) Determines how values should\n            be rendered in the output. See `ValueRenderOption`_ in\n            the Sheets API.\n\n            Possible values are:\n\n            ``ValueRenderOption.formatted``\n                (default) Values will be calculated and formatted according\n                to the cell's formatting. Formatting is based on the\n                spreadsheet's locale, not the requesting user's locale.\n\n            ``ValueRenderOption.unformatted``\n                Values will be calculated, but not formatted in the reply.\n                For example, if A1 is 1.23 and A2 is =A1 and formatted as\n                currency, then A2 would return the number 1.23.\n\n            ``ValueRenderOption.formula``\n                Values will not be calculated. The reply will include\n                the formulas. For example, if A1 is 1.23 and A2 is =A1 and\n                formatted as currency, then A2 would return \"=A1\".\n\n            .. _ValueRenderOption: https://developers.google.com/sheets/api/reference/rest/v4/ValueRenderOption\n\n        :type value_render_option: :class:`~gspread.utils.ValueRenderOption`\n\n        :param str date_time_render_option: (optional) How dates, times, and\n            durations should be represented in the output.\n\n            Possible values are:\n\n            ``DateTimeOption.serial_number``\n                (default) Instructs date, time, datetime, and duration fields\n                to be output as doubles in \"serial number\" format,\n                as popularized by Lotus 1-2-3.\n\n            ``DateTimeOption.formatted_string``\n                Instructs date, time, datetime, and duration fields to be output\n                as strings in their given number format\n                (which depends on the spreadsheet locale).\n\n            .. note::\n\n                This is ignored if ``value_render_option`` is ``ValueRenderOption.formatted``.\n\n            The default ``date_time_render_option`` is ``DateTimeOption.serial_number``.\n        :type date_time_render_option: :class:`~gspread.utils.DateTimeOption`\n\n        :param bool combine_merged_cells: (optional) If True, then all cells that\n            are part of a merged cell will have the same value as the top-left\n            cell of the merged cell. Defaults to False.\n\n            .. warning::\n\n                Setting this to True will cause an additional API request to be\n                made to retrieve the values of all merged cells.\n\n        :param bool maintain_size: (optional) If True, then the returned values\n            will have the same size as the requested range_name. Defaults to False.\n\n        :param bool pad_values: (optional) If True, then empty cells will be\n            filled with empty strings. Defaults to False.\n\n            .. warning::\n\n                    The returned array will not be rectangular unless this is set to True. If this is a problem, see also `maintain_size`.\n\n        :param GridRangeType return_type: (optional) The type of object to return.\n            Defaults to :class:`gspread.utils.GridRangeType.ValueRange`.\n            The other option is `gspread.utils.GridRangeType.ListOfLists`.\n\n        :rtype: :class:`gspread.worksheet.ValueRange`\n\n        .. versionadded:: 3.3\n\n        Examples::\n\n            # Return all values from the sheet\n            worksheet.get()\n\n            # Return value of 'A1' cell\n            worksheet.get('A1')\n\n            # Return values of 'A1:B2' range\n            worksheet.get('A1:B2')\n\n            # Return all values from columns \"A\" and \"B\"\n            worksheet.get('A:B')\n\n            # Return values of 'my_range' named range\n            worksheet.get('my_range')\n\n            # Return unformatted values (e.g. numbers as numbers)\n            worksheet.get('A2:B4', value_render_option=ValueRenderOption.unformatted)\n\n            # Return cell values without calculating formulas\n            worksheet.get('A2:B4', value_render_option=ValueRenderOption.formula)\n        \"\"\"\n        # do not override the given range name with the build up range name for the actual request\n        get_range_name = absolute_range_name(self.title, range_name)\n\n        params: ParamsType = {\n            \"majorDimension\": major_dimension,\n            \"valueRenderOption\": value_render_option,\n            \"dateTimeRenderOption\": date_time_render_option,\n        }\n\n        response = self.client.values_get(\n            self.spreadsheet_id, get_range_name, params=params\n        )\n\n        values = response.get(\"values\", [[]])\n\n        if pad_values is True:\n            try:\n                values = fill_gaps(values)\n            except KeyError:\n                values = [[]]\n\n        if combine_merged_cells is True:\n            spreadsheet_meta = self.client.fetch_sheet_metadata(self.spreadsheet_id)\n            worksheet_meta = finditem(\n                lambda x: x[\"properties\"][\"title\"] == self.title,\n                spreadsheet_meta[\"sheets\"],\n            )\n\n            # deal with named ranges\n            named_ranges = spreadsheet_meta.get(\"namedRanges\", [])\n            # if there is a named range with the name range_name\n            if any(\n                range_name == ss_namedRange[\"name\"]\n                for ss_namedRange in named_ranges\n                if ss_namedRange.get(\"name\")\n            ):\n                ss_named_range = finditem(\n                    lambda x: x[\"name\"] == range_name, named_ranges\n                )\n                grid_range = ss_named_range.get(\"range\", {})\n            # norrmal range_name, i.e., A1:B2\n            elif range_name is not None:\n                a1 = get_a1_from_absolute_range(range_name)\n                grid_range = a1_range_to_grid_range(a1)\n            # no range_name, i.e., all values\n            else:\n                grid_range = worksheet_meta.get(\"basicFilter\", {}).get(\"range\", {})\n\n            values = combined_merge_values(\n                worksheet_metadata=worksheet_meta,\n                values=values,\n                start_row_index=grid_range.get(\"startRowIndex\", 0),\n                start_col_index=grid_range.get(\"startColumnIndex\", 0),\n            )\n\n        # In case range_name is None\n        range_name = range_name or \"\"\n\n        # range_name must be a full grid range so that we can guarantee\n        #  startRowIndex and endRowIndex properties\n        if maintain_size is True and is_full_a1_notation(range_name):\n            a1_range = get_a1_from_absolute_range(range_name)\n            grid_range = a1_range_to_grid_range(a1_range)\n            rows = grid_range[\"endRowIndex\"] - grid_range[\"startRowIndex\"]\n            cols = grid_range[\"endColumnIndex\"] - grid_range[\"startColumnIndex\"]\n            values = fill_gaps(values, rows=rows, cols=cols)\n\n        if return_type is GridRangeType.ValueRange:\n            response[\"values\"] = values\n            return ValueRange.from_json(response)\n        if return_type is GridRangeType.ListOfLists:\n            return values\n        raise ValueError(\"return_type must be either ValueRange or ListOfLists\")\n\n    def batch_get(\n        self,\n        ranges: Iterable[str],\n        major_dimension: Optional[Dimension] = None,\n        value_render_option: Optional[ValueRenderOption] = None,\n        date_time_render_option: Optional[DateTimeOption] = None,\n    ) -> List[ValueRange]:\n        \"\"\"Returns one or more ranges of values from the sheet.\n\n        :param list ranges: List of cell ranges in the A1 notation or named\n            ranges.\n\n        :param str major_dimension: (optional) The major dimension of the\n            values. `Dimension.rows` (\"ROWS\") or `Dimension.cols` (\"COLUMNS\").\n            Defaults to Dimension.rows\n        :type major_dimension: :class:`~gspread.utils.Dimension`\n\n        :param value_render_option: (optional) Determines how values should\n            be rendered in the output. See `ValueRenderOption`_ in\n            the Sheets API.\n\n            Possible values are:\n\n            ``ValueRenderOption.formatted``\n                (default) Values will be calculated and formatted according\n                to the cell's formatting. Formatting is based on the\n                spreadsheet's locale, not the requesting user's locale.\n\n            ``ValueRenderOption.unformatted``\n                Values will be calculated, but not formatted in the reply.\n                For example, if A1 is 1.23 and A2 is =A1 and formatted as\n                currency, then A2 would return the number 1.23.\n\n            ``ValueRenderOption.formula``\n                Values will not be calculated. The reply will include\n                the formulas. For example, if A1 is 1.23 and A2 is =A1 and\n                formatted as currency, then A2 would return \"=A1\".\n\n            .. _ValueRenderOption: https://developers.google.com/sheets/api/reference/rest/v4/ValueRenderOption\n\n        :type value_render_option: :class:`~gspread.utils.ValueRenderOption`\n\n        :param str date_time_render_option: (optional) How dates, times, and\n            durations should be represented in the output.\n\n            Possible values are:\n\n            ``DateTimeOption.serial_number``\n                (default) Instructs date, time, datetime, and duration fields\n                to be output as doubles in \"serial number\" format,\n                as popularized by Lotus 1-2-3.\n\n            ``DateTimeOption.formatted_string``\n                Instructs date, time, datetime, and duration fields to be output\n                as strings in their given number format\n                (which depends on the spreadsheet locale).\n\n            .. note::\n\n                This is ignored if ``value_render_option`` is ``ValueRenderOption.formatted``.\n\n            The default ``date_time_render_option`` is ``DateTimeOption.serial_number``.\n        :type date_time_render_option: :class:`~gspread.utils.DateTimeOption`\n\n        .. versionadded:: 3.3\n\n        Examples::\n\n            # Read values from 'A1:B2' range and 'F12' cell\n            worksheet.batch_get(['A1:B2', 'F12'])\n        \"\"\"\n        ranges = [absolute_range_name(self.title, r) for r in ranges if r]\n\n        params: ParamsType = {\n            \"majorDimension\": major_dimension,\n            \"valueRenderOption\": value_render_option,\n            \"dateTimeRenderOption\": date_time_render_option,\n        }\n\n        response = self.client.values_batch_get(\n            self.spreadsheet_id, ranges=ranges, params=params\n        )\n\n        return [ValueRange.from_json(x) for x in response[\"valueRanges\"]]\n\n    def update(\n        self,\n        values: Iterable[Iterable[Any]],\n        range_name: Optional[str] = None,\n        raw: bool = True,\n        major_dimension: Optional[Dimension] = None,\n        value_input_option: Optional[ValueInputOption] = None,\n        include_values_in_response: Optional[bool] = None,\n        response_value_render_option: Optional[ValueRenderOption] = None,\n        response_date_time_render_option: Optional[DateTimeOption] = None,\n    ) -> JSONResponse:\n        \"\"\"Sets values in a cell range of the sheet.\n\n        :param list values: The data to be written in a matrix format.\n        :param str range_name: (optional) The A1 notation of the values\n            to update.\n\n        :param bool raw: The values will not be parsed by Sheets API and will\n            be stored as-is. For example, formulas will be rendered as plain\n            strings. Defaults to ``True``. This is a shortcut for\n            the ``value_input_option`` parameter.\n\n        :param str major_dimension: (optional) The major dimension of the\n            values. `Dimension.rows` (\"ROWS\") or `Dimension.cols` (\"COLUMNS\").\n            Defaults to Dimension.rows\n        :type major_dimension: :class:`~gspread.utils.Dimension`\n\n        :param str value_input_option: (optional) How the input data should be\n            interpreted. Possible values are:\n\n            ``ValueInputOption.raw``\n                (default) The values the user has entered will not be parsed and will be\n                stored as-is.\n\n            ``ValueInputOption.user_entered``\n                The values will be parsed as if the user typed them into the\n                UI. Numbers will stay as numbers, but strings may be converted\n                to numbers, dates, etc. following the same rules that are\n                applied when entering text into a cell via\n                the Google Sheets UI.\n\n        :type value_input_option: :class:`~gspread.utils.ValueInputOption`\n\n        :param response_value_render_option: (optional) Determines how values should\n            be rendered in the output. See `ValueRenderOption`_ in\n            the Sheets API.\n\n            Possible values are:\n\n            ``ValueRenderOption.formatted``\n                (default) Values will be calculated and formatted according\n                to the cell's formatting. Formatting is based on the\n                spreadsheet's locale, not the requesting user's locale.\n\n            ``ValueRenderOption.unformatted``\n                Values will be calculated, but not formatted in the reply.\n                For example, if A1 is 1.23 and A2 is =A1 and formatted as\n                currency, then A2 would return the number 1.23.\n\n            ``ValueRenderOption.formula``\n                Values will not be calculated. The reply will include\n                the formulas. For example, if A1 is 1.23 and A2 is =A1 and\n                formatted as currency, then A2 would return \"=A1\".\n\n            .. _ValueRenderOption: https://developers.google.com/sheets/api/reference/rest/v4/ValueRenderOption\n\n        :type response_value_render_option: :class:`~gspread.utils.ValueRenderOption`\n\n        :param str response_date_time_render_option: (optional) How dates, times, and\n            durations should be represented in the output.\n\n            Possible values are:\n\n            ``DateTimeOption.serial_number``\n                (default) Instructs date, time, datetime, and duration fields\n                to be output as doubles in \"serial number\" format,\n                as popularized by Lotus 1-2-3.\n\n            ``DateTimeOption.formatted_string``\n                Instructs date, time, datetime, and duration fields to be output\n                as strings in their given number format\n                (which depends on the spreadsheet locale).\n\n            .. note::\n\n                This is ignored if ``value_render_option`` is ``ValueRenderOption.formatted``.\n\n            The default ``date_time_render_option`` is ``DateTimeOption.serial_number``.\n        :type date_time_render_option: :class:`~gspread.utils.DateTimeOption`\n\n        Examples::\n\n            # Sets 'Hello world' in 'A2' cell\n            worksheet.update([['Hello world']], 'A2')\n\n            # Updates cells A1, B1, C1 with values 42, 43, 44 respectively\n            worksheet.update([[42, 43, 44]])\n\n            # Updates A2 and A3 with values 42 and 43\n            # Note that update range can be bigger than values array\n            worksheet.update([[42], [43]], 'A2:B4')\n\n            # Add a formula\n            worksheet.update([['=SUM(A1:A4)']], 'A5', raw=False)\n\n            # Update 'my_range' named range with values 42 and 43\n            worksheet.update([[42], [43]], 'my_range')\n\n            # Note: named ranges are defined in the scope of\n            # a spreadsheet, so even if `my_range` does not belong to\n            # this sheet it is still updated\n\n        .. versionadded:: 3.3\n        \"\"\"\n        if isinstance(range_name, (list, tuple)) and isinstance(values, str):\n            warnings.warn(\n                \"The order of arguments in worksheet.update() has changed. \"\n                \"Please pass values first and range_name second\"\n                \"or used named arguments (range_name=, values=)\",\n                DeprecationWarning,\n                stacklevel=2,\n            )\n            range_name, values = values, range_name\n\n        full_range_name = absolute_range_name(self.title, range_name)\n\n        if not value_input_option:\n            value_input_option = (\n                ValueInputOption.raw if raw is True else ValueInputOption.user_entered\n            )\n\n        params: ParamsType = {\n            \"valueInputOption\": value_input_option,\n            \"includeValuesInResponse\": include_values_in_response,\n            \"responseValueRenderOption\": response_value_render_option,\n            \"responseDateTimeRenderOption\": response_date_time_render_option,\n        }\n\n        response = self.client.values_update(\n            self.spreadsheet_id,\n            full_range_name,\n            params=params,\n            body={\"values\": values, \"majorDimension\": major_dimension},\n        )\n\n        return response\n\n    def batch_update(\n        self,\n        data: Iterable[MutableMapping[str, Any]],\n        raw: bool = True,\n        value_input_option: Optional[ValueInputOption] = None,\n        include_values_in_response: Optional[bool] = None,\n        response_value_render_option: Optional[ValueRenderOption] = None,\n        response_date_time_render_option: Optional[DateTimeOption] = None,\n    ) -> JSONResponse:\n        \"\"\"Sets values in one or more cell ranges of the sheet at once.\n\n        :param list data: List of dictionaries in the form of\n            `{'range': '...', 'values': [[.., ..], ...]}` where `range`\n            is a target range to update in A1 notation or a named range,\n            and `values` is a list of lists containing new values.\n\n        :param str value_input_option: (optional) How the input data should be\n            interpreted. Possible values are:\n\n            * ``ValueInputOption.raw``\n\n              The values the user has entered will not be parsed and will be\n              stored as-is.\n\n            * ``ValueInputOption.user_entered``\n\n              The values will be parsed as if the user typed them into the\n              UI. Numbers will stay as numbers, but strings may be converted\n              to numbers, dates, etc. following the same rules that are\n              applied when entering text into a cell via\n              the Google Sheets UI.\n\n        :type value_input_option: :class:`~gspread.utils.ValueInputOption`\n\n        :param response_value_render_option: (optional) Determines how values should\n            be rendered in the output. See `ValueRenderOption`_ in\n            the Sheets API.\n\n            Possible values are:\n\n            ``ValueRenderOption.formatted``\n                (default) Values will be calculated and formatted according\n                to the cell's formatting. Formatting is based on the\n                spreadsheet's locale, not the requesting user's locale.\n\n            ``ValueRenderOption.unformatted``\n                Values will be calculated, but not formatted in the reply.\n                For example, if A1 is 1.23 and A2 is =A1 and formatted as\n                currency, then A2 would return the number 1.23.\n\n            ``ValueRenderOption.formula``\n                Values will not be calculated. The reply will include\n                the formulas. For example, if A1 is 1.23 and A2 is =A1 and\n                formatted as currency, then A2 would return \"=A1\".\n\n            .. _ValueRenderOption: https://developers.google.com/sheets/api/reference/rest/v4/ValueRenderOption\n\n        :type response_value_render_option: :class:`~gspread.utils.ValueRenderOption`\n\n        :param str response_date_time_render_option: (optional) How dates, times, and\n            durations should be represented in the output.\n\n            Possible values are:\n\n            ``DateTimeOption.serial_number``\n                (default) Instructs date, time, datetime, and duration fields\n                to be output as doubles in \"serial number\" format,\n                as popularized by Lotus 1-2-3.\n\n            ``DateTimeOption.formatted_string``\n                Instructs date, time, datetime, and duration fields to be output\n                as strings in their given number format\n                (which depends on the spreadsheet locale).\n\n            .. note::\n\n                This is ignored if ``value_render_option`` is ``ValueRenderOption.formatted``.\n\n            The default ``date_time_render_option`` is ``DateTimeOption.serial_number``.\n        :type date_time_render_option: :class:`~gspread.utils.DateTimeOption`\n\n        Examples::\n\n            worksheet.batch_update([{\n                'range': 'A1:B1',\n                'values': [['42', '43']],\n            }, {\n                'range': 'my_range',\n                'values': [['44', '45']],\n            }])\n\n            # Note: named ranges are defined in the scope of\n            # a spreadsheet, so even if `my_range` does not belong to\n            # this sheet it is still updated\n\n        .. versionadded:: 3.3\n        \"\"\"\n        if not value_input_option:\n            value_input_option = (\n                ValueInputOption.raw if raw is True else ValueInputOption.user_entered\n            )\n\n        for values in data:\n            values[\"range\"] = absolute_range_name(self.title, values[\"range\"])\n\n        body: MutableMapping[str, Any] = {\n            \"valueInputOption\": value_input_option,\n            \"includeValuesInResponse\": include_values_in_response,\n            \"responseValueRenderOption\": response_value_render_option,\n            \"responseDateTimeRenderOption\": response_date_time_render_option,\n            \"data\": data,\n        }\n\n        response = self.client.values_batch_update(self.spreadsheet_id, body=body)\n\n        return response\n\n    def batch_format(self, formats: List[CellFormat]) -> JSONResponse:\n        \"\"\"Formats cells in batch.\n\n        :param list formats: List of ranges to format and the new format to apply\n            to each range.\n\n            The list is composed of dict objects with the following keys/values:\n\n            * range : A1 range notation\n            * format : a valid dict object with the format to apply\n              for that range see `CellFormat`_ in the Sheets API for available fields.\n\n        .. _CellFormat: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/cells#cellformat\n\n        Examples::\n\n            # Format the range ``A1:C1`` with bold text\n            # and format the range ``A2:C2`` a font size of 16\n\n            formats = [\n                {\n                    \"range\": \"A1:C1\",\n                    \"format\": {\n                        \"textFormat\": {\n                            \"bold\": True,\n                        },\n                    },\n                },\n                {\n                    \"range\": \"A2:C2\",\n                    \"format\": {\n                        \"textFormat\": {\n                            \"fontSize\": 16,\n                        },\n                    },\n                },\n            ]\n            worksheet.batch_format(formats)\n\n        .. versionadded:: 5.4\n        \"\"\"\n\n        # No need to type more than that it's only internal to that method\n        body: Dict[str, Any] = {\n            \"requests\": [],\n        }\n\n        for format in formats:\n            range_name = format[\"range\"]\n            cell_format = format[\"format\"]\n\n            grid_range = a1_range_to_grid_range(range_name, self.id)\n\n            fields = \"userEnteredFormat(%s)\" % \",\".join(cell_format.keys())\n\n            body[\"requests\"].append(\n                {\n                    \"repeatCell\": {\n                        \"range\": grid_range,\n                        \"cell\": {\"userEnteredFormat\": cell_format},\n                        \"fields\": fields,\n                    }\n                }\n            )\n\n        return self.client.batch_update(self.spreadsheet_id, body)\n\n    def format(\n        self, ranges: Union[List[str], str], format: JSONResponse\n    ) -> JSONResponse:\n        \"\"\"Format a list of ranges with the given format.\n\n        :param str|list ranges: Target ranges in the A1 notation.\n        :param dict format: Dictionary containing the fields to update.\n            See `CellFormat`_ in the Sheets API for available fields.\n\n        Examples::\n\n            # Set 'A4' cell's text format to bold\n            worksheet.format(\"A4\", {\"textFormat\": {\"bold\": True}})\n\n            # Set 'A1:D4' and 'A10:D10' cells's text format to bold\n            worksheet.format([\"A1:D4\", \"A10:D10\"], {\"textFormat\": {\"bold\": True}})\n\n            # Color the background of 'A2:B2' cell range in black,\n            # change horizontal alignment, text color and font size\n            worksheet.format(\"A2:B2\", {\n                \"backgroundColor\": {\n                  \"red\": 0.0,\n                  \"green\": 0.0,\n                  \"blue\": 0.0\n                },\n                \"horizontalAlignment\": \"CENTER\",\n                \"textFormat\": {\n                  \"foregroundColor\": {\n                    \"red\": 1.0,\n                    \"green\": 1.0,\n                    \"blue\": 1.0\n                  },\n                  \"fontSize\": 12,\n                  \"bold\": True\n                }\n            })\n\n        .. versionadded:: 3.3\n        \"\"\"\n\n        if isinstance(ranges, list):\n            range_list = ranges\n        else:\n            range_list = [ranges]\n\n        formats = [CellFormat(range=range, format=format) for range in range_list]\n\n        return self.batch_format(formats)\n\n    def resize(\n        self, rows: Optional[int] = None, cols: Optional[int] = None\n    ) -> JSONResponse:\n        \"\"\"Resizes the worksheet. Specify one of ``rows`` or ``cols``.\n\n        :param int rows: (optional) New number of rows.\n        :param int cols: (optional) New number columns.\n        \"\"\"\n        grid_properties = {}\n\n        if rows is not None:\n            grid_properties[\"rowCount\"] = rows\n\n        if cols is not None:\n            grid_properties[\"columnCount\"] = cols\n\n        if not grid_properties:\n            raise TypeError(\"Either 'rows' or 'cols' should be specified.\")\n\n        fields = \",\".join(\"gridProperties/%s\" % p for p in grid_properties.keys())\n\n        body = {\n            \"requests\": [\n                {\n                    \"updateSheetProperties\": {\n                        \"properties\": {\n                            \"sheetId\": self.id,\n                            \"gridProperties\": grid_properties,\n                        },\n                        \"fields\": fields,\n                    }\n                }\n            ]\n        }\n\n        res = self.client.batch_update(self.spreadsheet_id, body)\n        if rows is not None:\n            self._properties[\"gridProperties\"][\"rowCount\"] = rows\n        if cols is not None:\n            self._properties[\"gridProperties\"][\"columnCount\"] = cols\n        return res\n\n    def sort(\n        self, *specs: Tuple[int, Literal[\"asc\", \"des\"]], range: Optional[str] = None\n    ) -> JSONResponse:\n        \"\"\"Sorts worksheet using given sort orders.\n\n        :param list specs: The sort order per column. Each sort order\n            represented by a tuple where the first element is a column index\n            and the second element is the order itself: 'asc' or 'des'.\n        :param str range: The range to sort in A1 notation. By default sorts\n            the whole sheet excluding frozen rows.\n\n        Example::\n\n            # Sort sheet A -> Z by column 'B'\n            wks.sort((2, 'asc'))\n\n            # Sort range A2:G8 basing on column 'G' A -> Z\n            # and column 'B' Z -> A\n            wks.sort((7, 'asc'), (2, 'des'), range='A2:G8')\n\n        .. versionadded:: 3.4\n        \"\"\"\n        if range:\n            start_a1, end_a1 = range.split(\":\")\n            start_row, start_col = a1_to_rowcol(start_a1)\n            end_row, end_col = a1_to_rowcol(end_a1)\n        else:\n            start_row = self._properties[\"gridProperties\"].get(\"frozenRowCount\", 0) + 1\n            start_col = 1\n            end_row = self.row_count\n            end_col = self.col_count\n\n        request_range = {\n            \"sheetId\": self.id,\n            \"startRowIndex\": start_row - 1,\n            \"endRowIndex\": end_row,\n            \"startColumnIndex\": start_col - 1,\n            \"endColumnIndex\": end_col,\n        }\n\n        request_sort_specs = list()\n        for col, order in specs:\n            if order == \"asc\":\n                request_order = \"ASCENDING\"\n            elif order == \"des\":\n                request_order = \"DESCENDING\"\n            else:\n                raise ValueError(\n                    \"Either 'asc' or 'des' should be specified as sort order.\"\n                )\n            request_sort_spec = {\n                \"dimensionIndex\": col - 1,\n                \"sortOrder\": request_order,\n            }\n            request_sort_specs.append(request_sort_spec)\n\n        body = {\n            \"requests\": [\n                {\n                    \"sortRange\": {\n                        \"range\": request_range,\n                        \"sortSpecs\": request_sort_specs,\n                    }\n                }\n            ]\n        }\n\n        response = self.client.batch_update(self.spreadsheet_id, body)\n        return response\n\n    def update_title(self, title: str) -> JSONResponse:\n        \"\"\"Renames the worksheet.\n\n        :param str title: A new title.\n        \"\"\"\n        body = {\n            \"requests\": [\n                {\n                    \"updateSheetProperties\": {\n                        \"properties\": {\"sheetId\": self.id, \"title\": title},\n                        \"fields\": \"title\",\n                    }\n                }\n            ]\n        }\n\n        response = self.client.batch_update(self.spreadsheet_id, body)\n        self._properties[\"title\"] = title\n        return response\n\n    def update_tab_color(self, color: str) -> JSONResponse:\n        \"\"\"Changes the worksheet's tab color.\n        Use clear_tab_color() to remove the color.\n\n        :param str color:  Hex color value.\n        \"\"\"\n\n        color_dict = convert_hex_to_colors_dict(color)\n\n        body = {\n            \"requests\": [\n                {\n                    \"updateSheetProperties\": {\n                        \"properties\": {\n                            \"sheetId\": self.id,\n                            \"tabColorStyle\": {\n                                \"rgbColor\": color_dict,\n                            },\n                        },\n                        \"fields\": \"tabColorStyle\",\n                    }\n                }\n            ]\n        }\n\n        response = self.client.batch_update(self.spreadsheet_id, body)\n\n        self._properties[\"tabColorStyle\"] = {\"rgbColor\": color_dict}\n        return response\n\n    def clear_tab_color(self) -> JSONResponse:\n        \"\"\"Clears the worksheet's tab color.\n        Use update_tab_color() to set the color.\n        \"\"\"\n        body = {\n            \"requests\": [\n                {\n                    \"updateSheetProperties\": {\n                        \"properties\": {\n                            \"sheetId\": self.id,\n                            \"tabColorStyle\": {\n                                \"rgbColor\": None,\n                            },\n                        },\n                        \"fields\": \"tabColorStyle\",\n                    },\n                },\n            ],\n        }\n        response = self.client.batch_update(self.spreadsheet_id, body)\n        self._properties.pop(\"tabColorStyle\")\n        return response\n\n    def update_index(self, index: int) -> JSONResponse:\n        \"\"\"Updates the ``index`` property for the worksheet.\n\n        See the `Sheets API documentation\n        <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets#sheetproperties>`_\n        for information on how updating the index property affects the order of worksheets\n        in a spreadsheet.\n\n        To reorder all worksheets in a spreadsheet, see `Spreadsheet.reorder_worksheets`.\n\n        .. versionadded:: 3.4\n        \"\"\"\n        body = {\n            \"requests\": [\n                {\n                    \"updateSheetProperties\": {\n                        \"properties\": {\"sheetId\": self.id, \"index\": index},\n                        \"fields\": \"index\",\n                    }\n                }\n            ]\n        }\n\n        res = self.client.batch_update(self.spreadsheet_id, body)\n        self._properties[\"index\"] = index\n        return res\n\n    def _auto_resize(\n        self, start_index: int, end_index: int, dimension: Dimension\n    ) -> JSONResponse:\n        \"\"\"Updates the size of rows or columns in the  worksheet.\n\n        Index start from 0\n\n        :param start_index: The index (inclusive) to begin resizing\n        :param end_index: The index (exclusive) to finish resizing\n        :param dimension: Specifies whether to resize the row or column\n        :type major_dimension: :class:`~gspread.utils.Dimension`\n\n\n        .. versionadded:: 5.3.3\n        \"\"\"\n        body = {\n            \"requests\": [\n                {\n                    \"autoResizeDimensions\": {\n                        \"dimensions\": {\n                            \"sheetId\": self.id,\n                            \"dimension\": dimension,\n                            \"startIndex\": start_index,\n                            \"endIndex\": end_index,\n                        }\n                    }\n                }\n            ]\n        }\n\n        return self.client.batch_update(self.spreadsheet_id, body)\n\n    def columns_auto_resize(\n        self, start_column_index: int, end_column_index: int\n    ) -> JSONResponse:\n        \"\"\"Updates the size of rows or columns in the  worksheet.\n\n        Index start from 0\n\n        :param start_column_index: The index (inclusive) to begin resizing\n        :param end_column_index: The index (exclusive) to finish resizing\n\n\n        .. versionadded:: 3.4\n        .. versionchanged:: 5.3.3\n        \"\"\"\n        return self._auto_resize(start_column_index, end_column_index, Dimension.cols)\n\n    def rows_auto_resize(\n        self, start_row_index: int, end_row_index: int\n    ) -> JSONResponse:\n        \"\"\"Updates the size of rows or columns in the  worksheet.\n\n        Index start from 0\n\n        :param start_row_index: The index (inclusive) to begin resizing\n        :param end_row_index: The index (exclusive) to finish resizing\n\n\n        .. versionadded:: 5.3.3\n        \"\"\"\n        return self._auto_resize(start_row_index, end_row_index, Dimension.rows)\n\n    def add_rows(self, rows: int) -> None:\n        \"\"\"Adds rows to worksheet.\n\n        :param rows: Number of new rows to add.\n        :type rows: int\n\n        \"\"\"\n        self.resize(rows=self.row_count + rows)\n\n    def add_cols(self, cols: int) -> None:\n        \"\"\"Adds columns to worksheet.\n\n        :param cols: Number of new columns to add.\n        :type cols: int\n\n        \"\"\"\n        self.resize(cols=self.col_count + cols)\n\n    def append_row(\n        self,\n        values: Sequence[Union[str, int, float]],\n        value_input_option: ValueInputOption = ValueInputOption.raw,\n        insert_data_option: Optional[InsertDataOption] = None,\n        table_range: Optional[str] = None,\n        include_values_in_response: bool = False,\n    ) -> JSONResponse:\n        \"\"\"Adds a row to the worksheet and populates it with values.\n\n        Widens the worksheet if there are more values than columns.\n\n        :param list values: List of values for the new row.\n        :param value_input_option: (optional) Determines how the input data\n            should be interpreted. See `ValueInputOption`_ in the Sheets API\n            reference.\n        :type value_input_option: :class:`~gspread.utils.ValueInputOption`\n        :param str insert_data_option: (optional) Determines how the input data\n            should be inserted. See `InsertDataOption`_ in the Sheets API\n            reference.\n        :param str table_range: (optional) The A1 notation of a range to search\n            for a logical table of data. Values are appended after the last row\n            of the table. Examples: ``A1`` or ``B2:D4``\n        :param bool include_values_in_response: (optional) Determines if the\n            update response should include the values of the cells that were\n            appended. By default, responses do not include the updated values.\n\n        .. _ValueInputOption: https://developers.google.com/sheets/api/reference/rest/v4/ValueInputOption\n        .. _InsertDataOption: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/append#InsertDataOption\n\n        \"\"\"\n        return self.append_rows(\n            [values],\n            value_input_option=value_input_option,\n            insert_data_option=insert_data_option,\n            table_range=table_range,\n            include_values_in_response=include_values_in_response,\n        )\n\n    def append_rows(\n        self,\n        values: Sequence[Sequence[Union[str, int, float]]],\n        value_input_option: ValueInputOption = ValueInputOption.raw,\n        insert_data_option: Optional[InsertDataOption] = None,\n        table_range: Optional[str] = None,\n        include_values_in_response: Optional[bool] = None,\n    ) -> JSONResponse:\n        \"\"\"Adds multiple rows to the worksheet and populates them with values.\n\n        Widens the worksheet if there are more values than columns.\n\n        :param list values: List of rows each row is List of values for\n            the new row.\n        :param value_input_option: (optional) Determines how input data\n            should be interpreted. Possible values are ``ValueInputOption.raw``\n            or ``ValueInputOption.user_entered``.\n            See `ValueInputOption`_ in the Sheets API.\n        :type value_input_option: :class:`~gspread.utils.ValueInputOption`\n        :param str insert_data_option: (optional) Determines how the input data\n            should be inserted. See `InsertDataOption`_ in the Sheets API\n            reference.\n        :param str table_range: (optional) The A1 notation of a range to search\n            for a logical table of data. Values are appended after the last row\n            of the table. Examples: ``A1`` or ``B2:D4``\n        :param bool include_values_in_response: (optional) Determines if the\n            update response should include the values of the cells that were\n            appended. By default, responses do not include the updated values.\n\n        .. _ValueInputOption: https://developers.google.com/sheets/api/reference/rest/v4/ValueInputOption\n        .. _InsertDataOption: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/append#InsertDataOption\n        \"\"\"\n        range_label = absolute_range_name(self.title, table_range)\n\n        params: ParamsType = {\n            \"valueInputOption\": value_input_option,\n            \"insertDataOption\": insert_data_option,\n            \"includeValuesInResponse\": include_values_in_response,\n        }\n\n        body = {\"values\": values}\n\n        res = self.client.values_append(self.spreadsheet_id, range_label, params, body)\n        num_new_rows = len(values)\n        self._properties[\"gridProperties\"][\"rowCount\"] += num_new_rows\n        return res\n\n    def insert_row(\n        self,\n        values: Sequence[Union[str, int, float]],\n        index: int = 1,\n        value_input_option: ValueInputOption = ValueInputOption.raw,\n        inherit_from_before: bool = False,\n    ) -> JSONResponse:\n        \"\"\"Adds a row to the worksheet at the specified index and populates it\n        with values.\n\n        Widens the worksheet if there are more values than columns.\n\n        :param list values: List of values for the new row.\n        :param int index: (optional) Offset for the newly inserted row.\n        :param str value_input_option: (optional) Determines how input data\n            should be interpreted. Possible values are ``ValueInputOption.raw``\n            or ``ValueInputOption.user_entered``.\n            See `ValueInputOption`_ in the Sheets API.\n        :type value_input_option: :class:`~gspread.utils.ValueInputOption`\n        :param bool inherit_from_before: (optional) If True, the new row will\n            inherit its properties from the previous row. Defaults to False,\n            meaning that the new row acquires the properties of the row\n            immediately after it.\n\n            .. warning::\n\n               `inherit_from_before` must be False when adding a row to the top\n               of a spreadsheet (`index=1`), and must be True when adding to\n               the bottom of the spreadsheet.\n\n        .. _ValueInputOption: https://developers.google.com/sheets/api/reference/rest/v4/ValueInputOption\n        \"\"\"\n        return self.insert_rows(\n            [values],\n            index,\n            value_input_option=value_input_option,\n            inherit_from_before=inherit_from_before,\n        )\n\n    def insert_rows(\n        self,\n        values: Sequence[Sequence[Union[str, int, float]]],\n        row: int = 1,\n        value_input_option: ValueInputOption = ValueInputOption.raw,\n        inherit_from_before: bool = False,\n    ) -> JSONResponse:\n        \"\"\"Adds multiple rows to the worksheet at the specified index and\n        populates them with values.\n\n        :param list values: List of row lists. a list of lists, with the lists\n            each containing one row's values. Widens the worksheet if there are\n            more values than columns.\n        :param int row: Start row to update (one-based). Defaults to 1 (one).\n        :param str value_input_option: (optional) Determines how input data\n            should be interpreted. Possible values are ``ValueInputOption.raw``\n            or ``ValueInputOption.user_entered``.\n            See `ValueInputOption`_ in the Sheets API.\n        :type value_input_option: :class:`~gspread.utils.ValueInputOption`\n        :param bool inherit_from_before: (optional) If true, new rows will\n            inherit their properties from the previous row. Defaults to False,\n            meaning that new rows acquire the properties of the row immediately\n            after them.\n\n            .. warning::\n\n               `inherit_from_before` must be False when adding rows to the top\n               of a spreadsheet (`row=1`), and must be True when adding to\n               the bottom of the spreadsheet.\n        \"\"\"\n\n        # can't insert row on sheet with colon ':'\n        # in its name, see issue: https://issuetracker.google.com/issues/36761154\n        if \":\" in self.title:\n            raise GSpreadException(\n                \"can't insert row in worksheet with colon ':' in its name. See issue: https://issuetracker.google.com/issues/36761154\"\n            )\n\n        if inherit_from_before and row == 1:\n            raise GSpreadException(\n                \"inherit_from_before cannot be used when inserting row(s) at the top of a spreadsheet\"\n            )\n\n        insert_dimension_body = {\n            \"requests\": [\n                {\n                    \"insertDimension\": {\n                        \"range\": {\n                            \"sheetId\": self.id,\n                            \"dimension\": Dimension.rows,\n                            \"startIndex\": row - 1,\n                            \"endIndex\": len(values) + row - 1,\n                        },\n                        \"inheritFromBefore\": inherit_from_before,\n                    }\n                }\n            ]\n        }\n\n        self.client.batch_update(self.spreadsheet_id, insert_dimension_body)\n\n        range_label = absolute_range_name(self.title, \"A%s\" % row)\n\n        params: ParamsType = {\"valueInputOption\": value_input_option}\n\n        body = {\"majorDimension\": Dimension.rows, \"values\": values}\n\n        res = self.client.values_append(self.spreadsheet_id, range_label, params, body)\n        num_new_rows = len(values)\n        self._properties[\"gridProperties\"][\"rowCount\"] += num_new_rows\n        return res\n\n    def insert_cols(\n        self,\n        values: Sequence[Sequence[Union[str, int, float]]],\n        col: int = 1,\n        value_input_option: ValueInputOption = ValueInputOption.raw,\n        inherit_from_before: bool = False,\n    ) -> JSONResponse:\n        \"\"\"Adds multiple new cols to the worksheet at specified index and\n        populates them with values.\n\n        :param list values: List of col lists. a list of lists, with the lists\n            each containing one col's values. Increases the number of rows\n            if there are more values than columns.\n        :param int col: Start col to update (one-based). Defaults to 1 (one).\n        :param str value_input_option: (optional) Determines how input data\n            should be interpreted. Possible values are ``ValueInputOption.raw``\n            or ``ValueInputOption.user_entered``.\n            See `ValueInputOption`_ in the Sheets API.\n        :type value_input_option: :class:`~gspread.utils.ValueInputOption`\n        :param bool inherit_from_before: (optional) If True, new columns will\n            inherit their properties from the previous column. Defaults to\n            False, meaning that new columns acquire the properties of the\n            column immediately after them.\n\n            .. warning::\n\n               `inherit_from_before` must be False if adding at the left edge\n               of a spreadsheet (`col=1`), and must be True if adding at the\n               right edge of the spreadsheet.\n        \"\"\"\n\n        if inherit_from_before and col == 1:\n            raise GSpreadException(\n                \"inherit_from_before cannot be used when inserting column(s) at the left edge of a spreadsheet\"\n            )\n\n        insert_dimension_body = {\n            \"requests\": [\n                {\n                    \"insertDimension\": {\n                        \"range\": {\n                            \"sheetId\": self.id,\n                            \"dimension\": Dimension.cols,\n                            \"startIndex\": col - 1,\n                            \"endIndex\": len(values) + col - 1,\n                        },\n                        \"inheritFromBefore\": inherit_from_before,\n                    }\n                }\n            ]\n        }\n\n        self.client.batch_update(self.spreadsheet_id, insert_dimension_body)\n\n        range_label = absolute_range_name(self.title, rowcol_to_a1(1, col))\n\n        params: ParamsType = {\"valueInputOption\": value_input_option}\n\n        body = {\"majorDimension\": Dimension.cols, \"values\": values}\n\n        res = self.client.values_append(self.spreadsheet_id, range_label, params, body)\n        num_new_cols = len(values)\n        self._properties[\"gridProperties\"][\"columnCount\"] += num_new_cols\n        return res\n\n    @cast_to_a1_notation\n    def add_protected_range(\n        self,\n        name: str,\n        editor_users_emails: Sequence[str] = [],\n        editor_groups_emails: Sequence[str] = [],\n        description: Optional[str] = None,\n        warning_only: bool = False,\n        requesting_user_can_edit: bool = False,\n    ) -> JSONResponse:\n        \"\"\"Add protected range to the sheet. Only the editors can edit\n        the protected range.\n\n        Google API will automatically add the owner of this SpreadSheet.\n        The list ``editor_users_emails`` must at least contain the e-mail\n        address used to open that SpreadSheet.\n\n        ``editor_users_emails`` must only contain e-mail addresses\n        who already have a write access to the spreadsheet.\n\n        :param str name: A string with range value in A1 notation,\n            e.g. 'A1:A5'.\n\n        Alternatively, you may specify numeric boundaries. All values\n        index from 1 (one):\n\n        :param int first_row: First row number\n        :param int first_col: First column number\n        :param int last_row: Last row number\n        :param int last_col: Last column number\n\n        For both A1 and numeric notation:\n\n        :param list editor_users_emails: The email addresses of\n            users with edit access to the protected range.\n            This must include your e-mail address at least.\n        :param list editor_groups_emails: (optional) The email addresses of\n            groups with edit access to the protected range.\n        :param str description: (optional) Description for the protected\n            ranges.\n        :param boolean warning_only: (optional) When true this protected range\n            will show a warning when editing. Defaults to ``False``.\n        :param boolean requesting_user_can_edit: (optional) True if the user\n            who requested this protected range can edit the protected cells.\n            Defaults to ``False``.\n        \"\"\"\n\n        grid_range = a1_range_to_grid_range(name, self.id)\n\n        body = {\n            \"requests\": [\n                {\n                    \"addProtectedRange\": {\n                        \"protectedRange\": {\n                            \"range\": grid_range,\n                            \"description\": description,\n                            \"warningOnly\": warning_only,\n                            \"requestingUserCanEdit\": requesting_user_can_edit,\n                            \"editors\": (\n                                None\n                                if warning_only\n                                else {\n                                    \"users\": editor_users_emails,\n                                    \"groups\": editor_groups_emails,\n                                }\n                            ),\n                        }\n                    }\n                }\n            ]\n        }\n\n        return self.client.batch_update(self.spreadsheet_id, body)\n\n    def delete_protected_range(self, id: str) -> JSONResponse:\n        \"\"\"Delete protected range identified by the ID ``id``.\n\n        To retrieve the ID of a protected range use the following method\n        to list them all: :func:`~gspread.Spreadsheet.list_protected_ranges`\n        \"\"\"\n\n        body = {\n            \"requests\": [\n                {\n                    \"deleteProtectedRange\": {\n                        \"protectedRangeId\": id,\n                    }\n                }\n            ]\n        }\n\n        return self.client.batch_update(self.spreadsheet_id, body)\n\n    def delete_dimension(\n        self, dimension: Dimension, start_index: int, end_index: Optional[int] = None\n    ) -> JSONResponse:\n        \"\"\"Deletes multi rows from the worksheet at the specified index.\n\n        :param dimension: A dimension to delete. ``Dimension.rows`` or ``Dimension.cols``.\n        :type dimension: :class:`~gspread.utils.Dimension`\n        :param int start_index: Index of a first row for deletion.\n        :param int end_index: Index of a last row for deletion. When\n            ``end_index`` is not specified this method only deletes a single\n            row at ``start_index``.\n        \"\"\"\n        if end_index is None:\n            end_index = start_index\n\n        body = {\n            \"requests\": [\n                {\n                    \"deleteDimension\": {\n                        \"range\": {\n                            \"sheetId\": self.id,\n                            \"dimension\": dimension,\n                            \"startIndex\": start_index - 1,\n                            \"endIndex\": end_index,\n                        }\n                    }\n                }\n            ]\n        }\n\n        res = self.client.batch_update(self.spreadsheet_id, body)\n        if end_index is None:\n            end_index = start_index\n        num_deleted = end_index - start_index + 1\n        if dimension == Dimension.rows:\n            self._properties[\"gridProperties\"][\"rowCount\"] -= num_deleted\n        elif dimension == Dimension.cols:\n            self._properties[\"gridProperties\"][\"columnCount\"] -= num_deleted\n        return res\n\n    def delete_rows(\n        self, start_index: int, end_index: Optional[int] = None\n    ) -> JSONResponse:\n        \"\"\"Deletes multiple rows from the worksheet at the specified index.\n\n        :param int start_index: Index of a first row for deletion.\n        :param int end_index: Index of a last row for deletion.\n            When end_index is not specified this method only deletes a single\n            row at ``start_index``.\n\n        Example::\n\n            # Delete rows 5 to 10 (inclusive)\n            worksheet.delete_rows(5, 10)\n\n            # Delete only the second row\n            worksheet.delete_rows(2)\n\n        \"\"\"\n        return self.delete_dimension(Dimension.rows, start_index, end_index)\n\n    def delete_columns(\n        self, start_index: int, end_index: Optional[int] = None\n    ) -> JSONResponse:\n        \"\"\"Deletes multiple columns from the worksheet at the specified index.\n\n        :param int start_index: Index of a first column for deletion.\n        :param int end_index: Index of a last column for deletion.\n            When end_index is not specified this method only deletes a single\n            column at ``start_index``.\n        \"\"\"\n        return self.delete_dimension(Dimension.cols, start_index, end_index)\n\n    def clear(self) -> JSONResponse:\n        \"\"\"Clears all cells in the worksheet.\"\"\"\n        return self.client.values_clear(\n            self.spreadsheet_id, absolute_range_name(self.title)\n        )\n\n    def batch_clear(self, ranges: Sequence[str]) -> JSONResponse:\n        \"\"\"Clears multiple ranges of cells with 1 API call.\n\n        `Batch Clear`_\n\n        .. _Batch Clear: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchClear\n\n        Examples::\n\n            worksheet.batch_clear(['A1:B1','my_range'])\n\n            # Note: named ranges are defined in the scope of\n            # a spreadsheet, so even if `my_range` does not belong to\n            # this sheet it is still updated\n\n        .. versionadded:: 3.8.0\n\n        \"\"\"\n        ranges = [absolute_range_name(self.title, rng) for rng in ranges]\n\n        body = {\"ranges\": ranges}\n\n        response = self.client.values_batch_clear(self.spreadsheet_id, body=body)\n\n        return response\n\n    def _finder(\n        self,\n        func: Callable[[Callable[[Cell], bool], Iterable[Cell]], Iterator[Cell]],\n        query: Union[str, re.Pattern],\n        case_sensitive: bool,\n        in_row: Optional[int] = None,\n        in_column: Optional[int] = None,\n    ) -> Iterator[Cell]:\n        data = self.client.values_get(\n            self.spreadsheet_id, absolute_range_name(self.title)\n        )\n\n        try:\n            values = fill_gaps(data[\"values\"])\n        except KeyError:\n            values = []\n\n        cells = self._list_cells(values, in_row, in_column)\n\n        if isinstance(query, str):\n            str_query = query\n\n            def match(x: Cell) -> bool:\n                if case_sensitive or x.value is None:\n                    return x.value == str_query\n                else:\n                    return x.value.casefold() == str_query.casefold()\n\n        elif isinstance(query, re.Pattern):\n            re_query = query\n\n            def match(x: Cell) -> bool:\n                return re_query.search(x.value) is not None\n\n        else:\n            raise TypeError(\n                \"query must be of type: 'str' or 're.Pattern' (obtained from re.compile())\"\n            )\n\n        return func(match, cells)\n\n    def _list_cells(\n        self,\n        values: Sequence[Sequence[Union[str, int, float]]],\n        in_row: Optional[int] = None,\n        in_column: Optional[int] = None,\n    ) -> List[Cell]:\n        \"\"\"Returns a list of ``Cell`` instances scoped by optional\n        ``in_row``` or ``in_column`` values (both one-based).\n        \"\"\"\n        if in_row is not None and in_column is not None:\n            raise TypeError(\"Either 'in_row' or 'in_column' should be specified.\")\n\n        if in_column is not None:\n            return [\n                Cell(row=i + 1, col=in_column, value=str(row[in_column - 1]))\n                for i, row in enumerate(values)\n            ]\n        elif in_row is not None:\n            return [\n                Cell(row=in_row, col=j + 1, value=str(value))\n                for j, value in enumerate(values[in_row - 1])\n            ]\n        else:\n            return [\n                Cell(row=i + 1, col=j + 1, value=str(value))\n                for i, row in enumerate(values)\n                for j, value in enumerate(row)\n            ]\n\n    def find(\n        self,\n        query: Union[str, re.Pattern],\n        in_row: Optional[int] = None,\n        in_column: Optional[int] = None,\n        case_sensitive: bool = True,\n    ) -> Optional[Cell]:\n        \"\"\"Finds the first cell matching the query.\n\n        :param query: A literal string to match or compiled regular expression.\n        :type query: str, :py:class:`re.RegexObject`\n        :param int in_row: (optional) One-based row number to scope the search.\n        :param int in_column: (optional) One-based column number to scope\n            the search.\n        :param bool case_sensitive: (optional) comparison is case sensitive if\n            set to True, case insensitive otherwise. Default is True.\n            Does not apply to regular expressions.\n        :returns: the first matching cell or None otherwise\n        :rtype: :class:`gspread.cell.Cell`\n        \"\"\"\n        try:\n            return next(self._finder(filter, query, case_sensitive, in_row, in_column))\n        except StopIteration:\n            return None\n\n    def findall(\n        self,\n        query: Union[str, re.Pattern],\n        in_row: Optional[int] = None,\n        in_column: Optional[int] = None,\n        case_sensitive: bool = True,\n    ) -> List[Cell]:\n        \"\"\"Finds all cells matching the query.\n\n        Returns a list of :class:`gspread.cell.Cell`.\n\n        :param query: A literal string to match or compiled regular expression.\n        :type query: str, :py:class:`re.RegexObject`\n        :param int in_row: (optional) One-based row number to scope the search.\n        :param int in_column: (optional) One-based column number to scope\n            the search.\n        :param bool case_sensitive: (optional) comparison is case sensitive if\n            set to True, case insensitive otherwise. Default is True.\n            Does not apply to regular expressions.\n        :returns: the list of all matching cells or empty list otherwise\n        :rtype: list\n        \"\"\"\n\n        return [\n            elem\n            for elem in self._finder(filter, query, case_sensitive, in_row, in_column)\n        ]\n\n    def freeze(\n        self, rows: Optional[int] = None, cols: Optional[int] = None\n    ) -> JSONResponse:\n        \"\"\"Freeze rows and/or columns on the worksheet.\n\n        :param rows: Number of rows to freeze.\n        :param cols: Number of columns to freeze.\n        \"\"\"\n        grid_properties = {}\n\n        if rows is not None:\n            grid_properties[\"frozenRowCount\"] = rows\n\n        if cols is not None:\n            grid_properties[\"frozenColumnCount\"] = cols\n\n        if not grid_properties:\n            raise TypeError(\"Either 'rows' or 'cols' should be specified.\")\n\n        fields = \",\".join(\"gridProperties/%s\" % p for p in grid_properties.keys())\n\n        body = {\n            \"requests\": [\n                {\n                    \"updateSheetProperties\": {\n                        \"properties\": {\n                            \"sheetId\": self.id,\n                            \"gridProperties\": grid_properties,\n                        },\n                        \"fields\": fields,\n                    }\n                }\n            ]\n        }\n\n        res = self.client.batch_update(self.spreadsheet_id, body)\n        if rows is not None:\n            self._properties[\"gridProperties\"][\"frozenRowCount\"] = rows\n        if cols is not None:\n            self._properties[\"gridProperties\"][\"frozenColumnCount\"] = cols\n        return res\n\n    @cast_to_a1_notation\n    def set_basic_filter(self, name: Optional[str] = None) -> Any:\n        \"\"\"Add a basic filter to the worksheet. If a range or boundaries\n        are passed, the filter will be limited to the given range.\n\n        :param str name: A string with range value in A1 notation,\n            e.g. ``A1:A5``.\n\n        Alternatively, you may specify numeric boundaries. All values\n        index from 1 (one):\n\n        :param int first_row: First row number\n        :param int first_col: First column number\n        :param int last_row: Last row number\n        :param int last_col: Last column number\n\n        .. versionadded:: 3.4\n        \"\"\"\n        grid_range = (\n            a1_range_to_grid_range(name, self.id)\n            if name is not None\n            else {\"sheetId\": self.id}\n        )\n\n        body = {\"requests\": [{\"setBasicFilter\": {\"filter\": {\"range\": grid_range}}}]}\n\n        return self.client.batch_update(self.spreadsheet_id, body)\n\n    def clear_basic_filter(self) -> JSONResponse:\n        \"\"\"Remove the basic filter from a worksheet.\n\n        .. versionadded:: 3.4\n        \"\"\"\n        body = {\n            \"requests\": [\n                {\n                    \"clearBasicFilter\": {\n                        \"sheetId\": self.id,\n                    }\n                }\n            ]\n        }\n\n        return self.client.batch_update(self.spreadsheet_id, body)\n\n    @classmethod\n    def _duplicate(\n        cls,\n        client: HTTPClient,\n        spreadsheet_id: str,\n        sheet_id: int,\n        spreadsheet: Any,\n        insert_sheet_index: Optional[int] = None,\n        new_sheet_id: Optional[int] = None,\n        new_sheet_name: Optional[str] = None,\n    ) -> \"Worksheet\":\n        \"\"\"Class method to duplicate a :class:`gspread.worksheet.Worksheet`.\n\n        :param Session client: The HTTP client used for the HTTP request\n        :param str spreadsheet_id: The spreadsheet ID (used for the HTTP request)\n        :param int sheet_id: The original sheet ID\n        :param int insert_sheet_index: (optional) The zero-based index\n            where the new sheet should be inserted. The index of all sheets\n            after this are incremented.\n        :param int new_sheet_id: (optional) The ID of the new sheet.\n            If not set, an ID is chosen. If set, the ID must not conflict with\n            any existing sheet ID. If set, it must be non-negative.\n        :param str new_sheet_name: (optional) The name of the new sheet.\n            If empty, a new name is chosen for you.\n\n        :returns: a newly created :class:`gspread.worksheet.Worksheet`.\n\n        .. note::\n           This is a class method in order for the spreadsheet class\n           to use it without an instance of a Worksheet object\n        \"\"\"\n\n        body = {\n            \"requests\": [\n                {\n                    \"duplicateSheet\": {\n                        \"sourceSheetId\": sheet_id,\n                        \"insertSheetIndex\": insert_sheet_index,\n                        \"newSheetId\": new_sheet_id,\n                        \"newSheetName\": new_sheet_name,\n                    }\n                }\n            ]\n        }\n\n        data = client.batch_update(spreadsheet_id, body)\n\n        properties = data[\"replies\"][0][\"duplicateSheet\"][\"properties\"]\n\n        return Worksheet(spreadsheet, properties, spreadsheet_id, client)\n\n    def duplicate(\n        self,\n        insert_sheet_index: Optional[int] = None,\n        new_sheet_id: Optional[int] = None,\n        new_sheet_name: Optional[str] = None,\n    ) -> \"Worksheet\":\n        \"\"\"Duplicate the sheet.\n\n        :param int insert_sheet_index: (optional) The zero-based index\n            where the new sheet should be inserted. The index of all sheets\n            after this are incremented.\n        :param int new_sheet_id: (optional) The ID of the new sheet.\n            If not set, an ID is chosen. If set, the ID must not conflict with\n            any existing sheet ID. If set, it must be non-negative.\n        :param str new_sheet_name: (optional) The name of the new sheet.\n            If empty, a new name is chosen for you.\n\n        :returns: a newly created :class:`gspread.worksheet.Worksheet`.\n\n        .. versionadded:: 3.1\n        \"\"\"\n        return Worksheet._duplicate(\n            self.client,\n            self.spreadsheet_id,\n            self.id,\n            self.spreadsheet,\n            insert_sheet_index=insert_sheet_index,\n            new_sheet_id=new_sheet_id,\n            new_sheet_name=new_sheet_name,\n        )\n\n    def copy_to(\n        self,\n        destination_spreadsheet_id: str,\n    ) -> JSONResponse:\n        \"\"\"Copies this sheet to another spreadsheet.\n\n        :param str spreadsheet_id: The ID of the spreadsheet to copy\n            the sheet to.\n        :returns: a dict with the response containing information about\n            the newly created sheet.\n        :rtype: dict\n        \"\"\"\n        return self.client.spreadsheets_sheets_copy_to(\n            self.spreadsheet_id, self.id, destination_spreadsheet_id\n        )\n\n    @cast_to_a1_notation\n    def merge_cells(self, name: str, merge_type: str = MergeType.merge_all) -> Any:\n        \"\"\"Merge cells.\n\n        :param str name: Range name in A1 notation, e.g. 'A1:A5'.\n        :param merge_type: (optional) one of ``MergeType.merge_all``,\n            ``MergeType.merge_columns``, or ``MergeType.merge_rows``. Defaults to ``MergeType.merge_all``.\n            See `MergeType`_ in the Sheets API reference.\n        :type merge_type: :namedtuple:`~gspread.utils.MergeType`\n\n        Alternatively, you may specify numeric boundaries. All values\n        index from 1 (one):\n\n        :param int first_row: First row number\n        :param int first_col: First column number\n        :param int last_row: Last row number\n        :param int last_col: Last column number\n\n        :returns: the response body from the request\n        :rtype: dict\n\n        .. _MergeType: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/request#MergeType\n\n        \"\"\"\n        grid_range = a1_range_to_grid_range(name, self.id)\n\n        body = {\n            \"requests\": [{\"mergeCells\": {\"mergeType\": merge_type, \"range\": grid_range}}]\n        }\n\n        return self.client.batch_update(self.spreadsheet_id, body)\n\n    @cast_to_a1_notation\n    def unmerge_cells(self, name: str) -> JSONResponse:\n        \"\"\"Unmerge cells.\n\n        Unmerge previously merged cells.\n\n        :param str name: Range name in A1 notation, e.g. 'A1:A5'.\n\n        Alternatively, you may specify numeric boundaries. All values\n        index from 1 (one):\n\n        :param int first_row: First row number\n        :param int first_col: First column number\n        :param int last_row: Last row number\n        :param int last_col: Last column number\n\n        :returns: the response body from the request\n        :rtype: dict\n        \"\"\"\n\n        grid_range = a1_range_to_grid_range(name, self.id)\n\n        body = {\n            \"requests\": [\n                {\n                    \"unmergeCells\": {\n                        \"range\": grid_range,\n                    },\n                },\n            ]\n        }\n\n        return self.client.batch_update(self.spreadsheet_id, body)\n\n    def batch_merge(\n        self,\n        merges: List[Dict[Literal[\"range\", \"mergeType\"], Union[str, MergeType]]],\n        merge_type: MergeType = MergeType.merge_all,\n    ) -> Any:\n        \"\"\"Merge multiple ranges at the same time.\n\n        :param merges: list of dictionaries with the ranges(is A1-notation), and\n            an optional ``MergeType`` field.\n            See `MergeType`_ in the Sheets API reference.\n        :type merges: List[Dict[Literal[\"range\", \"mergeType\"], Union[str, MergeType]]]\n        :params merge_type: (optional) default ``MergeType`` for all merges missing the merges.\n            defaults to ``MergeType.merge_all``.\n        :type merge_type: ``MergeType``\n\n        example::\n\n            worksheet.batch_merge(\n                [\n                    {\"range\": \"A1:M1\"},\n                    {\"range\": \"D2:H2\", \"mergeType\": utils.MergeType.merge_rows}\n                ]\n            )\n\n        :returns: The body of the request response.\n        :rtype: dict\n        \"\"\"\n\n        requests = [\n            {\n                \"mergeCells\": {\n                    \"range\": a1_range_to_grid_range(merge[\"range\"], self.id),\n                    \"mergeType\": merge.get(\"mergeType\", merge_type),\n                }\n            }\n            for merge in merges\n        ]\n\n        return self.client.batch_update(self.spreadsheet_id, {\"requests\": requests})\n\n    def get_notes(\n        self,\n        default_empty_value: Optional[str] = \"\",\n        grid_range: Optional[str] = None,\n    ) -> List[List[str]]:\n        \"\"\"Returns a list of lists containing all notes in the sheet or range.\n\n        .. note::\n\n            The resulting matrix is not necessarily square.\n            The matrix is as tall as the last row with a note,\n            and each row is only as long as the last column in that row with a note.\n\n\n            Please see the example below.\n            To ensure it is square, use `gspread.utils.fill_gaps`,\n            for example like `utils.fill_gaps(arr, len(arr), max(len(a) for a in arr), None)`\n\n        :param str default_empty_value: (optional) Determines which value to use\n            for cells without notes, defaults to None.\n        :param str grid_range: (optional) Range name in A1 notation, e.g. 'A1:A5'.\n\n        Examples::\n\n            # Note data:\n            #      A      B\n            # 1    A1     -\n            # 2    -      B2\n\n            # Read all notes from the sheet\n            >>> worksheet.get_notes()\n            [\n                [\"A1\"],\n                [\"\", \"B2\"]\n            ]\n            >>> arr = worksheet.get_notes()\n            >>> gspread.utils.fill_gaps(arr, len(arr), max(len(a) for a in arr), None)\n            [\n                [\"A1\", \"\"],\n                [\"\", \"B2\"]\n            ]\n            # Read notes from a specific range\n            >>> worksheet.get_notes(grid_range=\"A2:B2\")\n            [\n                [\"\", \"B2\"]\n            ]\n        \"\"\"\n        params: ParamsType = {\n            \"fields\": \"sheets.data.rowData.values.note\",\n            \"ranges\": absolute_range_name(self.title, grid_range),\n        }\n\n        res = self.client.spreadsheets_get(self.spreadsheet_id, params)\n\n        # access 0th sheet because we specified a sheet with params[\"ranges\"] above\n        data = res[\"sheets\"][0][\"data\"][0].get(\"rowData\", [{}])\n        notes: List[List[str]] = []\n        for row in data:\n            notes.append([])\n            for cell in row.get(\"values\", []):\n                notes[-1].append(cell.get(\"note\", default_empty_value))\n\n        return notes\n\n    def get_note(self, cell: str) -> str:\n        \"\"\"Get the content of the note located at `cell`, or the empty string if the\n        cell does not have a note.\n\n        :param str cell: A string with cell coordinates in A1 notation,\n            e.g. 'D7'.\n        \"\"\"\n        absolute_cell = absolute_range_name(self.title, cell)\n        params: ParamsType = {\n            \"ranges\": absolute_cell,\n            \"fields\": \"sheets/data/rowData/values/note\",\n        }\n        res = self.client.spreadsheets_get(self.spreadsheet_id, params)\n\n        try:\n            note = res[\"sheets\"][0][\"data\"][0][\"rowData\"][0][\"values\"][0][\"note\"]\n        except (IndexError, KeyError):\n            note = \"\"\n\n        return note\n\n    def update_notes(self, notes: Mapping[str, str]) -> None:\n        \"\"\"update multiple notes. The notes are attached to a certain cell.\n\n        :param notes dict: A dict of notes with their cells coordinates and respective content\n\n            dict format is:\n\n            * key: the cell coordinates as A1 range format\n            * value: the string content of the cell\n\n            Example::\n\n                {\n                    \"D7\": \"Please read my notes\",\n                    \"GH42\": \"this one is too far\",\n                }\n\n        .. versionadded:: 5.9\n        \"\"\"\n\n        # No need to type lower than the sequence, it's internal only\n        body: MutableMapping[str, List[Any]] = {\"requests\": []}\n\n        for range, content in notes.items():\n            if not isinstance(content, str):\n                raise TypeError(\n                    \"Only string allowed as content for a note: '{} - {}'\".format(\n                        range, content\n                    )\n                )\n\n            req = {\n                \"updateCells\": {\n                    \"range\": a1_range_to_grid_range(range, self.id),\n                    \"fields\": \"note\",\n                    \"rows\": [\n                        {\n                            \"values\": [\n                                {\n                                    \"note\": content,\n                                },\n                            ],\n                        },\n                    ],\n                },\n            }\n\n            body[\"requests\"].append(req)\n\n        self.client.batch_update(self.spreadsheet_id, body)\n\n    @cast_to_a1_notation\n    def update_note(self, cell: str, content: str) -> None:\n        \"\"\"Update the content of the note located at `cell`.\n\n        :param str cell: A string with cell coordinates in A1 notation,\n            e.g. 'D7'.\n        :param str note: The text note to insert.\n\n        .. versionadded:: 3.7\n        \"\"\"\n        self.update_notes({cell: content})\n\n    @cast_to_a1_notation\n    def insert_note(self, cell: str, content: str) -> None:\n        \"\"\"Insert a note. The note is attached to a certain cell.\n\n        :param str cell: A string with cell coordinates in A1 notation,\n            e.g. 'D7'.\n        :param str content: The text note to insert.\n\n        Alternatively, you may specify numeric boundaries. All values\n        index from 1 (one):\n\n        :param int first_row: First row number\n        :param int first_col: First column number\n        :param int last_row: Last row number\n        :param int last_col: Last column number\n\n        .. versionadded:: 3.7\n        \"\"\"\n        self.update_notes({cell: content})\n\n    def insert_notes(self, notes: Mapping[str, str]) -> None:\n        \"\"\"insert multiple notes. The notes are attached to a certain cell.\n\n        :param notes dict: A dict of notes with their cells coordinates and respective content\n\n            dict format is:\n\n            * key: the cell coordinates as A1 range format\n            * value: the string content of the cell\n\n            Example::\n\n                {\n                    \"D7\": \"Please read my notes\",\n                    \"GH42\": \"this one is too far\",\n                }\n\n        .. versionadded:: 5.9\n        \"\"\"\n        self.update_notes(notes)\n\n    def clear_notes(self, ranges: Iterable[str]) -> None:\n        \"\"\"Clear all notes located at the at the coordinates\n        pointed to by ``ranges``.\n\n        :param ranges list: List of A1 coordinates where to clear the notes.\n            e.g. ``[\"A1\", \"GH42\", \"D7\"]``\n        \"\"\"\n        notes = {range: \"\" for range in ranges}\n        self.update_notes(notes)\n\n    @cast_to_a1_notation\n    def clear_note(self, cell: str) -> None:\n        \"\"\"Clear a note. The note is attached to a certain cell.\n\n        :param str cell: A string with cell coordinates in A1 notation,\n            e.g. 'D7'.\n\n        Alternatively, you may specify numeric boundaries. All values\n        index from 1 (one):\n\n        :param int first_row: First row number\n        :param int first_col: First column number\n        :param int last_row: Last row number\n        :param int last_col: Last column number\n\n        .. versionadded:: 3.7\n        \"\"\"\n        # set the note to <empty string> will clear it\n        self.update_notes({cell: \"\"})\n\n    @cast_to_a1_notation\n    def define_named_range(self, name: str, range_name: str) -> JSONResponse:\n        \"\"\"\n        :param str name: A string with range value in A1 notation,\n            e.g. 'A1:A5'.\n\n        Alternatively, you may specify numeric boundaries. All values\n        index from 1 (one):\n\n        :param int first_row: First row number\n        :param int first_col: First column number\n        :param int last_row: Last row number\n        :param int last_col: Last column number\n\n        :param range_name: The name to assign to the range of cells\n\n        :returns: the response body from the request\n        :rtype: dict\n        \"\"\"\n        body = {\n            \"requests\": [\n                {\n                    \"addNamedRange\": {\n                        \"namedRange\": {\n                            \"name\": range_name,\n                            \"range\": a1_range_to_grid_range(name, self.id),\n                        }\n                    }\n                }\n            ]\n        }\n        return self.client.batch_update(self.spreadsheet_id, body)\n\n    def delete_named_range(self, named_range_id: str) -> JSONResponse:\n        \"\"\"\n        :param str named_range_id: The ID of the named range to delete.\n            Can be obtained with Spreadsheet.list_named_ranges()\n\n        :returns: the response body from the request\n        :rtype: dict\n        \"\"\"\n        body = {\n            \"requests\": [\n                {\n                    \"deleteNamedRange\": {\n                        \"namedRangeId\": named_range_id,\n                    }\n                }\n            ]\n        }\n        return self.client.batch_update(self.spreadsheet_id, body)\n\n    def _add_dimension_group(\n        self, start: int, end: int, dimension: Dimension\n    ) -> JSONResponse:\n        \"\"\"\n        update this sheet by grouping 'dimension'\n\n        :param int start: The start (inclusive) of the group\n        :param int end: The end (exclusive) of the grou\n        :param str dimension: The dimension to group, can be one of\n            ``ROWS`` or ``COLUMNS``.\n        :type diension: :class:`~gspread.utils.Dimension`\n        \"\"\"\n        body = {\n            \"requests\": [\n                {\n                    \"addDimensionGroup\": {\n                        \"range\": {\n                            \"sheetId\": self.id,\n                            \"dimension\": dimension,\n                            \"startIndex\": start,\n                            \"endIndex\": end,\n                        },\n                    }\n                }\n            ]\n        }\n\n        return self.client.batch_update(self.spreadsheet_id, body)\n\n    def add_dimension_group_columns(self, start: int, end: int) -> JSONResponse:\n        \"\"\"\n        Group columns in order to hide them in the UI.\n\n        .. note::\n\n            API behavior with nested groups and non-matching ``[start:end)``\n            range can be found here: `Add Dimension Group Request`_\n\n            .. _Add Dimension Group Request: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/request#AddDimensionGroupRequest\n\n        :param int start: The start (inclusive) of the group\n        :param int end: The end (exclusive) of the group\n        \"\"\"\n        return self._add_dimension_group(start, end, Dimension.cols)\n\n    def add_dimension_group_rows(self, start: int, end: int) -> JSONResponse:\n        \"\"\"\n        Group rows in order to hide them in the UI.\n\n        .. note::\n\n            API behavior with nested groups and non-matching ``[start:end)``\n            range can be found here `Add Dimension Group Request`_\n\n        :param int start: The start (inclusive) of the group\n        :param int end: The end (exclusive) of the group\n        \"\"\"\n        return self._add_dimension_group(start, end, Dimension.rows)\n\n    def _delete_dimension_group(\n        self, start: int, end: int, dimension: Dimension\n    ) -> JSONResponse:\n        \"\"\"delete a dimension group in this sheet\"\"\"\n        body = {\n            \"requests\": [\n                {\n                    \"deleteDimensionGroup\": {\n                        \"range\": {\n                            \"sheetId\": self.id,\n                            \"dimension\": dimension,\n                            \"startIndex\": start,\n                            \"endIndex\": end,\n                        }\n                    }\n                }\n            ]\n        }\n\n        return self.client.batch_update(self.spreadsheet_id, body)\n\n    def delete_dimension_group_columns(self, start: int, end: int) -> JSONResponse:\n        \"\"\"\n        Remove the grouping of a set of columns.\n\n        .. note::\n\n            API behavior with nested groups and non-matching ``[start:end)``\n            range can be found here `Delete Dimension Group Request`_\n\n            .. _Delete Dimension Group Request: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/request#DeleteDimensionGroupRequest\n\n        :param int start: The start (inclusive) of the group\n        :param int end: The end (exclusive) of the group\n        \"\"\"\n        return self._delete_dimension_group(start, end, Dimension.cols)\n\n    def delete_dimension_group_rows(self, start: int, end: int) -> JSONResponse:\n        \"\"\"\n        Remove the grouping of a set of rows.\n\n        .. note::\n            API behavior with nested groups and non-matching ``[start:end)``\n            range can be found here `Delete Dimension Group Request`_\n\n        :param int start: The start (inclusive) of the group\n        :param int end: The end (exclusive) of the group\n        \"\"\"\n        return self._delete_dimension_group(start, end, Dimension.rows)\n\n    def list_dimension_group_columns(self) -> List[JSONResponse]:\n        \"\"\"\n        List all the grouped columns in this worksheet.\n\n        :returns: list of the grouped columns\n        :rtype: list\n        \"\"\"\n        return self._get_sheet_property(\"columnGroups\", [])\n\n    def list_dimension_group_rows(self) -> List[JSONResponse]:\n        \"\"\"\n        List all the grouped rows in this worksheet.\n\n        :returns: list of the grouped rows\n        :rtype: list\n        \"\"\"\n        return self._get_sheet_property(\"rowGroups\", [])\n\n    def _hide_dimension(\n        self, start: int, end: int, dimension: Dimension\n    ) -> JSONResponse:\n        \"\"\"\n        Update this sheet by hiding the given 'dimension'\n\n        Index starts from 0.\n\n        :param int start: The (inclusive) start of the dimension to hide\n        :param int end: The (exclusive) end of the dimension to hide\n        :param str dimension: The dimension to hide, can be one of\n            ``ROWS`` or ``COLUMNS``.\n        :type diension: :class:`~gspread.utils.Dimension`\n        \"\"\"\n        body = {\n            \"requests\": [\n                {\n                    \"updateDimensionProperties\": {\n                        \"range\": {\n                            \"sheetId\": self.id,\n                            \"dimension\": dimension,\n                            \"startIndex\": start,\n                            \"endIndex\": end,\n                        },\n                        \"properties\": {\n                            \"hiddenByUser\": True,\n                        },\n                        \"fields\": \"hiddenByUser\",\n                    }\n                }\n            ]\n        }\n\n        return self.client.batch_update(self.spreadsheet_id, body)\n\n    def hide_columns(self, start: int, end: int) -> JSONResponse:\n        \"\"\"\n        Explicitly hide the given column index range.\n\n        Index starts from 0.\n\n        :param int start: The (inclusive) starting column to hide\n        :param int end: The (exclusive) end column to hide\n        \"\"\"\n        return self._hide_dimension(start, end, Dimension.cols)\n\n    def hide_rows(self, start: int, end: int) -> JSONResponse:\n        \"\"\"\n        Explicitly hide the given row index range.\n\n        Index starts from 0.\n\n        :param int start: The (inclusive) starting row to hide\n        :param int end: The (exclusive) end row to hide\n        \"\"\"\n        return self._hide_dimension(start, end, Dimension.rows)\n\n    def _unhide_dimension(\n        self, start: int, end: int, dimension: Dimension\n    ) -> JSONResponse:\n        \"\"\"\n        Update this sheet by unhiding the given 'dimension'\n\n        Index starts from 0.\n\n        :param int start: The (inclusive) start of the dimension to unhide\n        :param int end: The (inclusive) end of the dimension to unhide\n        :param str dimension: The dimension to hide, can be one of\n            ``ROWS`` or ``COLUMNS``.\n        :type dimension: :class:`~gspread.utils.Dimension`\n        \"\"\"\n        body = {\n            \"requests\": [\n                {\n                    \"updateDimensionProperties\": {\n                        \"range\": {\n                            \"sheetId\": self.id,\n                            \"dimension\": dimension,\n                            \"startIndex\": start,\n                            \"endIndex\": end,\n                        },\n                        \"properties\": {\n                            \"hiddenByUser\": False,\n                        },\n                        \"fields\": \"hiddenByUser\",\n                    }\n                }\n            ]\n        }\n\n        return self.client.batch_update(self.spreadsheet_id, body)\n\n    def unhide_columns(self, start: int, end: int) -> JSONResponse:\n        \"\"\"\n        Explicitly unhide the given column index range.\n\n        Index start from 0.\n\n        :param int start: The (inclusive) starting column to hide\n        :param int end: The (exclusive) end column to hide\n        \"\"\"\n        return self._unhide_dimension(start, end, Dimension.cols)\n\n    def unhide_rows(self, start: int, end: int) -> JSONResponse:\n        \"\"\"\n        Explicitly unhide the given row index range.\n\n        Index start from 0.\n\n        :param int start: The (inclusive) starting row to hide\n        :param int end: The (exclusive) end row to hide\n        \"\"\"\n        return self._unhide_dimension(start, end, Dimension.rows)\n\n    def _set_hidden_flag(self, hidden: bool) -> JSONResponse:\n        \"\"\"Send the appropriate request to hide/show the current worksheet\"\"\"\n\n        body = {\n            \"requests\": [\n                {\n                    \"updateSheetProperties\": {\n                        \"properties\": {\n                            \"sheetId\": self.id,\n                            \"hidden\": hidden,\n                        },\n                        \"fields\": \"hidden\",\n                    }\n                }\n            ]\n        }\n\n        res = self.client.batch_update(self.spreadsheet_id, body)\n        self._properties[\"hidden\"] = hidden\n        return res\n\n    def hide(self) -> JSONResponse:\n        \"\"\"Hides the current worksheet from the UI.\"\"\"\n        return self._set_hidden_flag(True)\n\n    def show(self) -> JSONResponse:\n        \"\"\"Show the current worksheet in the UI.\"\"\"\n        return self._set_hidden_flag(False)\n\n    def _set_gridlines_hidden_flag(self, hidden: bool) -> JSONResponse:\n        \"\"\"Hide/show gridlines on the current worksheet\"\"\"\n\n        body = {\n            \"requests\": [\n                {\n                    \"updateSheetProperties\": {\n                        \"properties\": {\n                            \"sheetId\": self.id,\n                            \"gridProperties\": {\n                                \"hideGridlines\": hidden,\n                            },\n                        },\n                        \"fields\": \"gridProperties.hideGridlines\",\n                    }\n                }\n            ]\n        }\n\n        res = self.client.batch_update(self.spreadsheet_id, body)\n        self._properties[\"gridProperties\"][\"hideGridlines\"] = hidden\n        return res\n\n    def hide_gridlines(self) -> JSONResponse:\n        \"\"\"Hide gridlines on the current worksheet\"\"\"\n        return self._set_gridlines_hidden_flag(True)\n\n    def show_gridlines(self) -> JSONResponse:\n        \"\"\"Show gridlines on the current worksheet\"\"\"\n        return self._set_gridlines_hidden_flag(False)\n\n    def copy_range(\n        self,\n        source: str,\n        dest: str,\n        paste_type: PasteType = PasteType.normal,\n        paste_orientation: PasteOrientation = PasteOrientation.normal,\n    ) -> JSONResponse:\n        \"\"\"Copies a range of data from source to dest\n\n        .. note::\n\n           ``paste_type`` values are explained here: `Paste Types`_\n\n           .. _Paste Types: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/request#pastetype\n\n        :param str source: The A1 notation of the source range to copy\n        :param str dest: The A1 notation of the destination where to paste the data\n            Can be the A1 notation of the top left corner where the range must be paste\n            ex: G16, or a complete range notation ex: G16:I20.\n            The dimensions of the destination range is not checked and has no effect,\n            if the destination range does not match the source range dimension, the entire\n            source range is copies anyway.\n        :param paste_type: the paste type to apply. Many paste type are available from\n            the Sheet API, see above note for detailed values for all values and their effects.\n            Defaults to ``PasteType.normal``\n        :type paste_type: :class:`~gspread.utils.PasteType`\n        :param paste_orientation: The paste orient to apply.\n            Possible values are: ``normal`` to keep the same orientation, ``transpose`` where all rows become columns and vice versa.\n        :type paste_orientation: :class:`~gspread.utils.PasteOrientation`\n        \"\"\"\n        body = {\n            \"requests\": [\n                {\n                    \"copyPaste\": {\n                        \"source\": a1_range_to_grid_range(source, self.id),\n                        \"destination\": a1_range_to_grid_range(dest, self.id),\n                        \"pasteType\": paste_type,\n                        \"pasteOrientation\": paste_orientation,\n                    }\n                }\n            ]\n        }\n\n        return self.client.batch_update(self.spreadsheet_id, body)\n\n    def cut_range(\n        self,\n        source: str,\n        dest: str,\n        paste_type: PasteType = PasteType.normal,\n    ) -> JSONResponse:\n        \"\"\"Moves a range of data form source to dest\n\n        .. note::\n\n           ``paste_type`` values are explained here: `Paste Types`_\n\n           .. _Paste Types: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/request#pastetype\n\n        :param str source: The A1 notation of the source range to move\n        :param str dest: The A1 notation of the destination where to paste the data\n            **it must be a single cell** in the A1 notation. ex: G16\n        :param paste_type: the paste type to apply. Many paste type are available from\n            the Sheet API, see above note for detailed values for all values and their effects.\n            Defaults to ``PasteType.normal``\n        :type paste_type: :class:`~gspread.utils.PasteType`\n        \"\"\"\n\n        # in the cut/paste request, the destination object\n        # is a `gridCoordinate` and not a `gridRang`\n        # it has different object keys\n        grid_dest = a1_range_to_grid_range(dest, self.id)\n\n        body = {\n            \"requests\": [\n                {\n                    \"cutPaste\": {\n                        \"source\": a1_range_to_grid_range(source, self.id),\n                        \"destination\": {\n                            \"sheetId\": grid_dest[\"sheetId\"],\n                            \"rowIndex\": grid_dest[\"startRowIndex\"],\n                            \"columnIndex\": grid_dest[\"startColumnIndex\"],\n                        },\n                        \"pasteType\": paste_type,\n                    }\n                }\n            ]\n        }\n\n        return self.client.batch_update(self.spreadsheet_id, body)\n\n    def add_validation(\n        self,\n        range: str,\n        condition_type: ValidationConditionType,\n        values: Iterable[Any],\n        inputMessage: Optional[str] = None,\n        strict: bool = False,\n        showCustomUi: bool = False,\n    ) -> Any:\n        \"\"\"Adds a data validation rule to any given range.\n\n        .. note::\n\n            ``condition_type`` values are explained here: `ConditionType`_\n\n            .. _ConditionType: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/other#ConditionType\n\n\n        :param str source: The A1 notation of the source range to move\n        :param condition_type: The sort of condition to apply.\n        :param values: List of condition values.\n        :type values: Any\n        :param str inputMessage: Message to show for the validation.\n        :param bool strict: Whether to reject invalid data or not.\n        :param bool showCustomUi: Whether to show a custom UI(Dropdown) for list values.\n\n        **Examples**\n\n        .. code-block:: python\n\n            import gspread\n            from gspread.utils import ValidationConditionType\n\n\n            ...\n\n            ws = spreadsheet.sheet1\n\n            ws.add_validation(\n                'A1',\n                ValidationConditionType.number_greater,\n                [10],\n                strict=True,\n                inputMessage='Value must be greater than 10',\n            )\n\n            ws.add_validation(\n                'C2:C7',\n                ValidationConditionType.one_of_list,\n                ['Yes','No'],\n                showCustomUi=True\n            )\n        \"\"\"\n\n        if not isinstance(condition_type, ValidationConditionType):\n            raise TypeError(\n                \"condition_type param should be a valid ValidationConditionType.\"\n            )\n\n        grid = a1_range_to_grid_range(range, self.id)\n\n        body = {\n            \"requests\": [\n                {\n                    \"setDataValidation\": {\n                        \"range\": grid,\n                        \"rule\": {\n                            \"condition\": {\n                                \"type\": condition_type,\n                                \"values\": [\n                                    ({\"userEnteredValue\": value}) for value in values\n                                ],\n                            },\n                            \"showCustomUi\": showCustomUi,\n                            \"strict\": strict,\n                            \"inputMessage\": inputMessage,\n                        },\n                    }\n                }\n            ],\n        }\n\n        return self.client.batch_update(self.spreadsheet_id, body)\n\n    def expand(\n        self,\n        top_left_range_name: str = \"A1\",\n        direction: TableDirection = TableDirection.table,\n    ) -> List[List[str]]:\n        \"\"\"Expands a cell range based on non-null adjacent cells.\n\n        Expand can be done in 3 directions defined in :class:`~gspread.utils.TableDirection`\n\n        * ``TableDirection.right``: expands right until the first empty cell\n        * ``TableDirection.down``: expands down until the first empty cell\n        * ``TableDirection.table``: expands right until the first empty cell and down until the first empty cell\n\n        In case of empty result an empty list is restuned.\n\n        When the given ``start_range`` is outside the given matrix of values the exception\n        :class:`~gspread.exceptions.InvalidInputValue` is raised.\n\n        Example::\n\n            values = [\n                ['', '',   '',   '', ''  ],\n                ['', 'B2', 'C2', '', 'E2'],\n                ['', 'B3', 'C3', '', 'E3'],\n                ['', ''  , ''  , '', 'E4'],\n            ]\n            >>> utils.find_table(TableDirection.table, 'B2')\n            [\n                ['B2', 'C2'],\n                ['B3', 'C3'],\n            ]\n\n\n        .. note::\n\n            the ``TableDirection.table`` will look right from starting cell then look down from starting cell.\n            It will not check cells located inside the table. This could lead to\n            potential empty values located in the middle of the table.\n\n        .. note::\n\n            when it is necessary to use non-default options for :meth:`~gspread.worksheet.Worksheet.get`,\n            please get the data first using desired options then use the function\n            :func:`gspread.utils.find_table` to extract the desired table.\n\n        :param str top_left_range_name: the top left corner of the table to expand.\n        :param gspread.utils.TableDirection direction: the expand direction\n        :rtype list(list): the resulting matrix\n        \"\"\"\n\n        values = self.get(pad_values=True)\n        return find_table(values, top_left_range_name, direction)\n"
  },
  {
    "path": "lint-requirements.txt",
    "content": "bandit==1.7.10\nblack==24.8.0\ncodespell==2.2.5\nflake8==7.1.1\nisort==5.12.0\nmypy==1.11.2\nmypy-extensions==1.0.0\ntyping_extensions==4.12.2\n"
  },
  {
    "path": "pyproject.toml",
    "content": "[build-system]\nrequires = [\"flit_core >=3.2,<4\"]\nbuild-backend = \"flit_core.buildapi\"\n\n[project]\nname = \"gspread\"\nauthors = [{ name = \"Anton Burnashev\", email = \"fuss.here@gmail.com\" }]\nmaintainers = [\n    { name = \"Alexandre Lavigne\", email = \"lavigne958@gmail.com\" },\n    { name = \"alifeee\", email = \"alifeee.web@outlook.com\" },\n]\nreadme = \"README.md\"\nkeywords = [\"spreadsheets\", \"google-spreadsheets\", \"google-sheets\"]\nclassifiers = [\n    \"Programming Language :: Python\",\n    \"Programming Language :: Python :: 3\",\n    \"Programming Language :: Python :: 3.8\",\n    \"Programming Language :: Python :: 3.9\",\n    \"Programming Language :: Python :: 3.10\",\n    \"Programming Language :: Python :: 3.11\",\n    \"License :: OSI Approved :: MIT License\",\n    \"Operating System :: OS Independent\",\n    \"Development Status :: 5 - Production/Stable\",\n    \"Intended Audience :: Developers\",\n    \"Intended Audience :: End Users/Desktop\",\n    \"Intended Audience :: Science/Research\",\n    \"Topic :: Office/Business :: Financial :: Spreadsheet\",\n    \"Topic :: Software Development :: Libraries :: Python Modules\",\n]\ndependencies = [\"google-auth>=1.12.0\", \"google-auth-oauthlib>=0.4.1\"]\nrequires-python = \">=3.8\"\ndynamic = [\"version\", \"description\"]\n\n[project.urls]\nDocumentation = \"https://gspread.readthedocs.io/en/latest/\"\nSource = \"https://github.com/burnash/gspread\"\n\n[project.license]\nfile = \"LICENSE.txt\"\n\n[tool.flit.sdist]\ninclude = [\"docs/\", \"HISTORY.rst\"]\n\n[tool.setuptools.package-data]\ngspread = [\"gspread/py.typed\"]\n"
  },
  {
    "path": "test-requirements.txt",
    "content": "google-auth==1.12.0\ngoogle-auth-oauthlib==0.4.1\nvcrpy\npytest\npytest-vcr\nurllib3==1.26.15\n"
  },
  {
    "path": "tests/__init__.py",
    "content": ""
  },
  {
    "path": "tests/cassettes/CellTest.test_a1_value.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test CellTest test_a1_value\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"94\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:47:46 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"181\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:47:47 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3325\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:47:47 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"191\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:47:47 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3325\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ/values/%27Sheet1%27%21D4?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:47:48 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"55\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!D4\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"Dummy\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"23\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:47:48 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!B1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:47:48 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"116\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:Z1000\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"\\\",\\n      \\\"Dummy\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:47:49 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test CellTest test_a1_value\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"94\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:16 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"181\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:16 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3325\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:17 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"191\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:17 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3325\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI/values/%27Sheet1%27%21D4?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:17 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"55\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!D4\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"Dummy\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"23\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:18 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!B1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:18 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"116\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:Z1000\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"\\\",\\n      \\\"Dummy\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:18 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test CellTest test_a1_value\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"94\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:18 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"181\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Dslt6b_MEecinUu6x5Onc-hG6WdoWD-9khrZwSHLeTI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:19 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3325\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Dslt6b_MEecinUu6x5Onc-hG6WdoWD-9khrZwSHLeTI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:20 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3325\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Dslt6b_MEecinUu6x5Onc-hG6WdoWD-9khrZwSHLeTI/values/%27Sheet1%27%21D4?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:20 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"55\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!D4\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Dslt6b_MEecinUu6x5Onc-hG6WdoWD-9khrZwSHLeTI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"Dummy\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"23\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:21 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1Dslt6b_MEecinUu6x5Onc-hG6WdoWD-9khrZwSHLeTI\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!B1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Dslt6b_MEecinUu6x5Onc-hG6WdoWD-9khrZwSHLeTI/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:21 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"116\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:Z1000\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"\\\",\\n      \\\"Dummy\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1Dslt6b_MEecinUu6x5Onc-hG6WdoWD-9khrZwSHLeTI?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:22 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/CellTest.test_define_named_range.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test CellTest test_define_named_range\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"104\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 02 Mar 2024 10:34:37 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"191\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 02 Mar 2024 10:34:38 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 02 Mar 2024 10:34:39 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addNamedRange\\\": {\\\"namedRange\\\": {\\\"name\\\": \\\"TestDefineNamedRange\\\", \\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 2, \\\"sheetId\\\": 0}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 02 Mar 2024 10:34:39 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"412\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4?fields=namedRanges\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 02 Mar 2024 10:34:40 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"250\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"deleteNamedRange\\\": {\\\"namedRangeId\\\": \\\"220755387\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"67\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 02 Mar 2024 10:34:41 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4?fields=namedRanges\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 02 Mar 2024 10:34:41 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addNamedRange\\\": {\\\"namedRange\\\": {\\\"name\\\": \\\"TestDefineNamedRange\\\", \\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 2, \\\"sheetId\\\": 0}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 02 Mar 2024 10:34:41 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"413\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4?fields=namedRanges\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 02 Mar 2024 10:34:42 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"251\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1S_BLfCbQDFbROywtjC4LXZO18nIcmpsnVafpKgy0Kl4?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 02 Mar 2024 10:34:43 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/CellTest.test_delete_named_range.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test CellTest test_delete_named_range\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"104\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:47:55 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"191\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:47:56 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:47:56 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"201\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:47:56 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addNamedRange\\\": {\\\"namedRange\\\": {\\\"name\\\": \\\"TestDeleteNamedRange\\\", \\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 2, \\\"sheetId\\\": 0}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:47:56 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"413\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"deleteNamedRange\\\": {\\\"namedRangeId\\\": \\\"1792097461\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"68\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:47:57 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q?fields=namedRanges\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:47:57 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:47:57 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test CellTest test_delete_named_range\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"104\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:25 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"191\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:26 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:26 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"201\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:26 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addNamedRange\\\": {\\\"namedRange\\\": {\\\"name\\\": \\\"TestDeleteNamedRange\\\", \\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 2, \\\"sheetId\\\": 0}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:26 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"412\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"deleteNamedRange\\\": {\\\"namedRangeId\\\": \\\"643866637\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"67\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:27 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts?fields=namedRanges\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:27 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:27 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test CellTest test_delete_named_range\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"104\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:30 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"191\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1dYaxzMaEOW5iOCEMroFFvheJXjNSU7luluZ7Zb0_D3w?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:31 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1dYaxzMaEOW5iOCEMroFFvheJXjNSU7luluZ7Zb0_D3w?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:31 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1dYaxzMaEOW5iOCEMroFFvheJXjNSU7luluZ7Zb0_D3w:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addNamedRange\\\": {\\\"namedRange\\\": {\\\"name\\\": \\\"TestDeleteNamedRange\\\", \\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 2, \\\"sheetId\\\": 0}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:32 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"412\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1dYaxzMaEOW5iOCEMroFFvheJXjNSU7luluZ7Zb0_D3w:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"deleteNamedRange\\\": {\\\"namedRangeId\\\": \\\"346112917\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"67\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:32 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1dYaxzMaEOW5iOCEMroFFvheJXjNSU7luluZ7Zb0_D3w\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1dYaxzMaEOW5iOCEMroFFvheJXjNSU7luluZ7Zb0_D3w?fields=namedRanges\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:33 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1dYaxzMaEOW5iOCEMroFFvheJXjNSU7luluZ7Zb0_D3w?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:33 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/CellTest.test_equality.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test CellTest test_equality\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"94\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:47:59 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"181\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\\\",\\n  \\\"name\\\": \\\"Test CellTest test_equality\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:47:59 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3325\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:00 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"191\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3325\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_equality 1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"33\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"110\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"test_equality 1\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:01 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"110\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"test_equality 1\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21A2?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_equality 1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"33\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:01 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A2\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:01 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"110\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"test_equality 1\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_equality 1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"33\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:01 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!B1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:01 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"110\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!B1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"test_equality 1\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:02 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test CellTest test_equality\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"94\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:30 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"181\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\\\",\\n  \\\"name\\\": \\\"Test CellTest test_equality\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:31 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3325\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:31 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"191\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:31 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3325\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_equality 1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"33\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:32 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:32 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"110\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"test_equality 1\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:32 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"110\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"test_equality 1\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21A2?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_equality 1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"33\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:32 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A2\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:33 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"110\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"test_equality 1\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_equality 1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"33\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:33 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!B1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:33 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"110\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!B1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"test_equality 1\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:34 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test CellTest test_equality\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"94\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:35 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"181\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48\\\",\\n  \\\"name\\\": \\\"Test CellTest test_equality\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:36 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3325\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:36 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3325\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_equality 1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"33\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:37 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:38 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"110\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"test_equality 1\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:38 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"110\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"test_equality 1\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48/values/%27Sheet1%27%21A2?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_equality 1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"33\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:39 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A2\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:39 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"110\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"test_equality 1\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_equality 1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"33\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:39 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!B1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:40 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"110\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!B1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"test_equality 1\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1q8gApitVvpb3xM0S0i1RDbCuNXnkKR237LBIdDEHM48?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:40 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/CellTest.test_merge_cells.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test CellTest test_merge_cells\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"97\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:04 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"184\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:05 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:05 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"194\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:05 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8/values/%27Sheet1%27%21A1%3AB2?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[42, 43], [43, 44]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"32\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:05 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:B2\\\",\\n  \\\"updatedRows\\\": 2,\\n  \\\"updatedColumns\\\": 2,\\n  \\\"updatedCells\\\": 4\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"mergeCells\\\": {\\\"mergeType\\\": \\\"MERGE_ROWS\\\", \\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 2, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"166\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:06 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:06 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3638\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"mergeCells\\\": {\\\"mergeType\\\": \\\"MERGE_ALL\\\", \\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 2, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"165\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:06 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:07 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3496\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"unmergeCells\\\": {\\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 2, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"141\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:07 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:07 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:08 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test CellTest test_merge_cells\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"97\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:35 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"184\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\\\",\\n  \\\"name\\\": \\\"Test CellTest test_merge_cells\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:36 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:36 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"194\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:36 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE/values/%27Sheet1%27%21A1%3AB2?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[42, 43], [43, 44]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"32\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:37 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:B2\\\",\\n  \\\"updatedRows\\\": 2,\\n  \\\"updatedColumns\\\": 2,\\n  \\\"updatedCells\\\": 4\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"mergeCells\\\": {\\\"mergeType\\\": \\\"MERGE_ROWS\\\", \\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 2, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"166\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:37 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:37 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3638\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"mergeCells\\\": {\\\"mergeType\\\": \\\"MERGE_ALL\\\", \\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 2, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"165\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:37 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:38 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3496\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"unmergeCells\\\": {\\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 2, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"141\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:38 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:38 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:38 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test CellTest test_merge_cells\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"97\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:43 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"184\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:43 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:44 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo/values/%27Sheet1%27%21A1%3AB2?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[42, 43], [43, 44]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"32\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:44 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:B2\\\",\\n  \\\"updatedRows\\\": 2,\\n  \\\"updatedColumns\\\": 2,\\n  \\\"updatedCells\\\": 4\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"mergeCells\\\": {\\\"mergeType\\\": \\\"MERGE_ROWS\\\", \\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 2, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"166\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:45 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:45 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3638\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"mergeCells\\\": {\\\"mergeType\\\": \\\"MERGE_ALL\\\", \\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 2, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"165\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:46 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:46 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3496\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"unmergeCells\\\": {\\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 2, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"141\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:47 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:47 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/162KVbmLsoXetIBC-6r_RKhB7gHW2CjDn71q-xl3abmo?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:48 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/CellTest.test_numeric_value.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test CellTest test_numeric_value\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"99\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:10 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"186\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:11 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3330\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:11 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"196\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:11 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3330\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"= 1 / 1024\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"28\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:12 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:12 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"0.0009765625\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"2,000,000.01\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"30\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:12 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:12 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"2,000,000.01\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"Non-numeric value\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"35\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:13 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:13 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"112\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"Non-numeric value\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:13 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test CellTest test_numeric_value\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"99\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:41 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"186\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:41 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3330\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:41 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"196\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:42 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3330\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"= 1 / 1024\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"28\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:42 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:42 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"0.0009765625\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"2,000,000.01\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"30\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:42 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:43 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"2,000,000.01\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"Non-numeric value\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"35\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:43 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:43 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"112\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"Non-numeric value\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:44 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test CellTest test_numeric_value\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"99\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:50 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"186\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM\\\",\\n  \\\"name\\\": \\\"Test CellTest test_numeric_value\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:51 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3330\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:51 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3330\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"= 1 / 1024\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"28\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:52 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:52 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"0.0009765625\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"2,000,000.01\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"30\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:52 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:53 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"2,000,000.01\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"Non-numeric value\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"35\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:53 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:53 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"112\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"Non-numeric value\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1c7bjTZ77Hjd1RhfyuevjmkMVN1h7AzcqOmgJ0Tqt2JM?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:54 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/CellTest.test_properties.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test CellTest test_properties\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"96\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:15 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"183\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:16 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3327\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:16 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"193\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:16 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3327\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_properties 1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"35\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:16 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:17 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"112\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"test_properties 1\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:48:17 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test CellTest test_properties\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"96\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:47 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"183\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:47 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3327\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:47 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"193\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:47 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3327\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_properties 1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"35\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:48 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:48 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"112\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"test_properties 1\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 20 Jul 2023 08:54:48 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test CellTest test_properties\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"96\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:57 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"183\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1zZiLt1MZ-FKC9_cAHjWS_uQqFgT-HvJbIoiId3nYwY4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:57 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3327\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1zZiLt1MZ-FKC9_cAHjWS_uQqFgT-HvJbIoiId3nYwY4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:58 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3327\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1zZiLt1MZ-FKC9_cAHjWS_uQqFgT-HvJbIoiId3nYwY4/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_properties 1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"35\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:59 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1zZiLt1MZ-FKC9_cAHjWS_uQqFgT-HvJbIoiId3nYwY4\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1zZiLt1MZ-FKC9_cAHjWS_uQqFgT-HvJbIoiId3nYwY4/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:59 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"112\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"test_properties 1\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1zZiLt1MZ-FKC9_cAHjWS_uQqFgT-HvJbIoiId3nYwY4?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:13:59 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/ClientTest.test_access_non_existing_spreadsheet.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test ClientTest test_access_non_existing_spreadsheet\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"119\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:52:40 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"206\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ieRgnZ296CcvWYi5GY21vAxIzU93-_9kHAdMdDNzkaQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:52:40 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3350\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1ieRgnZ296CcvWYi5GY21vAxIzU93-_9kHAdMdDNzkaQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:52:41 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"216\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/test?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 404,\n                    \"message\": \"Not Found\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:52:41 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"114\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"error\\\": {\\n    \\\"code\\\": 404,\\n    \\\"message\\\": \\\"Requested entity was not found.\\\",\\n    \\\"status\\\": \\\"NOT_FOUND\\\"\\n  }\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/test?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 404,\n                    \"message\": \"Not Found\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:52:41 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"114\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"error\\\": {\\n    \\\"code\\\": 404,\\n    \\\"message\\\": \\\"Requested entity was not found.\\\",\\n    \\\"status\\\": \\\"NOT_FOUND\\\"\\n  }\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1ieRgnZ296CcvWYi5GY21vAxIzU93-_9kHAdMdDNzkaQ?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:52:42 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test ClientTest test_access_non_existing_spreadsheet\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"119\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:03 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"206\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1JFaGAEBmGdz-vJ5Xpf-MnoSQ-C0UACGNrJ5OO6BicBw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:03 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3350\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/test?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 404,\n                    \"message\": \"Not Found\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:04 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"114\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"error\\\": {\\n    \\\"code\\\": 404,\\n    \\\"message\\\": \\\"Requested entity was not found.\\\",\\n    \\\"status\\\": \\\"NOT_FOUND\\\"\\n  }\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/test?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 404,\n                    \"message\": \"Not Found\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:04 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"114\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"error\\\": {\\n    \\\"code\\\": 404,\\n    \\\"message\\\": \\\"Requested entity was not found.\\\",\\n    \\\"status\\\": \\\"NOT_FOUND\\\"\\n  }\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1JFaGAEBmGdz-vJ5Xpf-MnoSQ-C0UACGNrJ5OO6BicBw?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:04 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/ClientTest.test_access_private_spreadsheet.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test ClientTest test_access_private_spreadsheet\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"114\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Sat, 17 Feb 2024 11:03:59 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"201\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_EaBz4exHK3x5wohaCDnv6QIUZps-Msk2g3-l471HQw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Sat, 17 Feb 2024 11:04:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"3345\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1_EaBz4exHK3x5wohaCDnv6QIUZps-Msk2g3-l471HQw?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Sat, 17 Feb 2024 11:04:01 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1jIKzPs8LsiZZdLdeMEP-5ZIHw6RkjiOmj1LrJN706Yc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 403,\n                    \"message\": \"Forbidden\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 17 Feb 2024 11:06:25 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"126\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"error\\\": {\\n    \\\"code\\\": 403,\\n    \\\"message\\\": \\\"The caller does not have permission\\\",\\n    \\\"status\\\": \\\"PERMISSION_DENIED\\\"\\n  }\\n}\\n\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/ClientTest.test_add_timeout.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test ClientTest test_add_timeout\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"99\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Wed, 21 Feb 2024 21:21:08 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"186\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1ayf3YSjjjwDhFkUr3nrdN1JRScl3cOMB9lDbHEkjoko\\\",\\n  \\\"name\\\": \\\"Test ClientTest test_add_timeout\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ayf3YSjjjwDhFkUr3nrdN1JRScl3cOMB9lDbHEkjoko?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Wed, 21 Feb 2024 21:21:08 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"3330\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ayf3YSjjjwDhFkUr3nrdN1JRScl3cOMB9lDbHEkjoko?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Wed, 21 Feb 2024 21:21:09 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"3330\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1ayf3YSjjjwDhFkUr3nrdN1JRScl3cOMB9lDbHEkjoko?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Wed, 21 Feb 2024 21:21:09 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/ClientTest.test_client_export_spreadsheet.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test ClientTest test_client_export_spreadsheet\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"113\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 30 Jan 2024 23:34:28 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"content-length\": [\n                        \"200\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fEaDzl5YT3ZuLNfFxPapFUYU0kOfbXitSS9gBj7R-0I?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 30 Jan 2024 23:34:29 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3344\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fEaDzl5YT3ZuLNfFxPapFUYU0kOfbXitSS9gBj7R-0I?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 30 Jan 2024 23:34:29 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3344\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fEaDzl5YT3ZuLNfFxPapFUYU0kOfbXitSS9gBj7R-0I/values/%27Sheet1%27%21A1%3AB2?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"a1\\\", \\\"B2\\\"]], \\\"majorDimension\\\": null}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"50\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 30 Jan 2024 23:34:30 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1fEaDzl5YT3ZuLNfFxPapFUYU0kOfbXitSS9gBj7R-0I\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:B1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 2,\\n  \\\"updatedCells\\\": 2\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1fEaDzl5YT3ZuLNfFxPapFUYU0kOfbXitSS9gBj7R-0I/export?mimeType=text%2Fcsv\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 30 Jan 2024 23:34:30 GMT\"\n                    ],\n                    \"X-GUploader-UploadID\": [\n                        \"ABPtcPpyQMUSi1FArIhJ9Wli20pJx3k-JsRa7208kF72_kMznYxnpfGD3kpMvU8HRhMjMHBmKwMo3uQvEA\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/csv\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Expires\": [\n                        \"Tue, 30 Jan 2024 23:34:30 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"5\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Disposition\": [\n                        \"attachment\"\n                    ],\n                    \"Access-Control-Allow-Credentials\": [\n                        \"true\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"a1,B2\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1fEaDzl5YT3ZuLNfFxPapFUYU0kOfbXitSS9gBj7R-0I?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 30 Jan 2024 23:34:31 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/ClientTest.test_copy.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test ClientTest test_copy\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"92\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:52:49 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"179\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1qplNSZFC3OZHZLb9ZjZ3gky-z6MGYtAL0SVh98R1QJ4\\\",\\n  \\\"name\\\": \\\"Test ClientTest test_copy\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1qplNSZFC3OZHZLb9ZjZ3gky-z6MGYtAL0SVh98R1QJ4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:52:50 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3323\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1qplNSZFC3OZHZLb9ZjZ3gky-z6MGYtAL0SVh98R1QJ4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:52:50 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"189\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1qplNSZFC3OZHZLb9ZjZ3gky-z6MGYtAL0SVh98R1QJ4/copy?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": null, \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"69\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:52:52 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"187\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:52:53 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3331\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:52:53 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"197\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1qplNSZFC3OZHZLb9ZjZ3gky-z6MGYtAL0SVh98R1QJ4/comments?fields=comments%2Fcontent%2Ccomments%2Fanchor%2CnextPageToken&includeDeleted=False&pageSize=100&pageToken=\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:52:53 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"21\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"comments\\\": []\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1qplNSZFC3OZHZLb9ZjZ3gky-z6MGYtAL0SVh98R1QJ4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:52:54 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3323\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:52:54 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3331\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1qplNSZFC3OZHZLb9ZjZ3gky-z6MGYtAL0SVh98R1QJ4?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:52:54 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test ClientTest test_copy\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"92\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:10 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"179\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PdhaWXY17FcCXAg99X-WOGDdglyb_wYMhaTq536Qc4w?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:10 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3323\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1PdhaWXY17FcCXAg99X-WOGDdglyb_wYMhaTq536Qc4w/copy?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": null, \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"69\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:12 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"187\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gWaoTng7uXOYAN9fK0tt3SQdXaONWPCf3UsEk3xRXwI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:13 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3331\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1PdhaWXY17FcCXAg99X-WOGDdglyb_wYMhaTq536Qc4w/comments?fields=comments%2Fcontent%2Ccomments%2Fanchor%2CnextPageToken&includeDeleted=False&pageSize=100&pageToken=\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:13 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"21\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"comments\\\": []\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PdhaWXY17FcCXAg99X-WOGDdglyb_wYMhaTq536Qc4w?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:13 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3323\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gWaoTng7uXOYAN9fK0tt3SQdXaONWPCf3UsEk3xRXwI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:14 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3331\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1PdhaWXY17FcCXAg99X-WOGDdglyb_wYMhaTq536Qc4w?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:14 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/ClientTest.test_create.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test ClientTest test_create\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"94\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:52:57 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"181\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1XLwNvMVKOBj4WpSrTy5gnCOuCQI-HqVj-7jNx9o_Jtg?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:52:57 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3325\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1XLwNvMVKOBj4WpSrTy5gnCOuCQI-HqVj-7jNx9o_Jtg?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:52:58 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"191\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test Spreadsheet\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"83\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:00 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"170\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4\\\",\\n  \\\"name\\\": \\\"Test Spreadsheet\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:00 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:01 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"180\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1XLwNvMVKOBj4WpSrTy5gnCOuCQI-HqVj-7jNx9o_Jtg?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:01 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test ClientTest test_create\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"94\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:17 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"181\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1d29yHCRadqzKZk5R2GoPEm6NDcaU77z95aQ_zgPDrc8\\\",\\n  \\\"name\\\": \\\"Test ClientTest test_create\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1d29yHCRadqzKZk5R2GoPEm6NDcaU77z95aQ_zgPDrc8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:18 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3325\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test Spreadsheet\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"83\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:20 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"170\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1AR1kJoHJqM82EwldLuoiifcHYG4Nzpimb9zZNplVS3I\\\",\\n  \\\"name\\\": \\\"Test Spreadsheet\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1AR1kJoHJqM82EwldLuoiifcHYG4Nzpimb9zZNplVS3I?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:20 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1d29yHCRadqzKZk5R2GoPEm6NDcaU77z95aQ_zgPDrc8?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:21 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/ClientTest.test_import_csv.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test ClientTest test_import_csv\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"98\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:04 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"185\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo\\\",\\n  \\\"name\\\": \\\"Test ClientTest test_import_csv\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:05 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3329\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:05 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"195\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://www.googleapis.com/upload/drive/v2/files/1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo?uploadType=media&convert=True&supportsAllDrives=True\",\n                \"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\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/csv\"\n                    ],\n                    \"Content-Length\": [\n                        \"294\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Access-Control-Allow-Credentials\": [\n                        \"true\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"4314\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"ETag\": [\n                        \"\\\"MTY5MjI2OTU4NjE3NQ\\\"\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:07 GMT\"\n                    ],\n                    \"X-GUploader-UploadID\": [\n                        \"ADPycdtYj4THnT5bXug1txMmUlc7nnr66wvyF4O8ELCXfmMhhNgVszbKm2KTQU_5f17s8kU2e97y6RGsF3g_YbRFZoQauQ\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:07 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3374\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:08 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"195\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:08 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3374\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo/values/%27Test%20ClientTest%20test_import_csv%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:08 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"593\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1Dik3t2oxGUeWYfCSNISxL589LakaCaU3GwhgzkkpYDo?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:09 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test ClientTest test_import_csv\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"98\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:23 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"185\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:24 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3329\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://www.googleapis.com/upload/drive/v2/files/1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s?uploadType=media&convert=True&supportsAllDrives=True\",\n                \"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\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/csv\"\n                    ],\n                    \"Content-Length\": [\n                        \"294\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Access-Control-Allow-Credentials\": [\n                        \"true\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:26 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-GUploader-UploadID\": [\n                        \"ADPycduyeA5fnsbv-UI4tdXW4dtIP9H1VzA7gWu6SFQ-412UW5NGSgFslxhfvASLOtR3bNERGWCrtnCl27aU2C7N4ZMHUA\"\n                    ],\n                    \"Content-Length\": [\n                        \"4314\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"ETag\": [\n                        \"\\\"MTY5NDAzNDg2NTc3Ng\\\"\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:27 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3374\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:27 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3374\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s/values/%27Test%20ClientTest%20test_import_csv%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:28 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"593\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1BjngYXIfdn1ku6KJ6mw6LKb7fD9_eqJM-4qrAZTxT0s?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:28 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/ClientTest.test_list_spreadsheet_files.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test ClientTest test_list_spreadsheet_files\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"Content-Length\": [\n                        \"110\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Sep 2023 19:39:06 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"content-length\": [\n                        \"197\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/16x4eVnmuWxnblLaqAE7Z7qdztmy9lHruvJ_lvPQKNgc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Sep 2023 19:39:06 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"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\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Sep 2023 19:39:07 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"content-length\": [\n                        \"280\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/16x4eVnmuWxnblLaqAE7Z7qdztmy9lHruvJ_lvPQKNgc?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Sep 2023 19:39:07 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/ClientTest.test_no_found_exeption.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test ClientTest test_no_found_exeption\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"105\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:11 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1JqtFK-Vbd3zd8I1dfQ5oA3v6mXoKp9r7INJywCS9ous?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:12 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1JqtFK-Vbd3zd8I1dfQ5oA3v6mXoKp9r7INJywCS9ous?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:12 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"202\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"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\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:12 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"46\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#fileList\\\",\\n  \\\"files\\\": []\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1JqtFK-Vbd3zd8I1dfQ5oA3v6mXoKp9r7INJywCS9ous?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:13 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test ClientTest test_no_found_exeption\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"105\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:31 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1qgKNpaL-WBRXTcrrf4RGcqfWVX8vwua_g_XyjWDVpiU?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:32 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"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\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:33 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"46\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#fileList\\\",\\n  \\\"files\\\": []\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1qgKNpaL-WBRXTcrrf4RGcqfWVX8vwua_g_XyjWDVpiU?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:33 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/ClientTest.test_open_all_has_metadata.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test ClientTest test_open_all_has_metadata\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"109\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:16 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"196\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1oYfrbS48u9cOgrKbkTtDZqDMe4Wtu992B1b3DqYPxxg?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:16 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3340\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1oYfrbS48u9cOgrKbkTtDZqDMe4Wtu992B1b3DqYPxxg?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:16 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"206\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"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\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:17 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"6941\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1oYfrbS48u9cOgrKbkTtDZqDMe4Wtu992B1b3DqYPxxg?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:17 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3340\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1oYfrbS48u9cOgrKbkTtDZqDMe4Wtu992B1b3DqYPxxg?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:17 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"206\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:18 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:18 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"180\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:18 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3331\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:18 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"197\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:19 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3359\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:19 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"225\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:19 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:20 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"201\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:20 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3345\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:21 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"211\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:21 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:21 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"180\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:22 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:22 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"180\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:22 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3306\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:23 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"172\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:23 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:23 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"180\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:24 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:24 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"180\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:25 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3306\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:25 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"172\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:26 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3340\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:26 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"206\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:26 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:27 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"180\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:27 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3331\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:27 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"197\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:28 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3345\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:28 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"211\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:29 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:29 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"180\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:30 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:30 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"198\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:30 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:31 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"180\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:31 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:31 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"198\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:32 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:32 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"198\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:33 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:33 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"180\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:33 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:34 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"198\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:34 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3324\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:34 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:35 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3324\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:35 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:36 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3324\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:36 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:36 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3324\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:37 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:37 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3324\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:37 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:38 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:38 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"180\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:39 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:39 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"180\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:39 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3306\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:40 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"172\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:40 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:40 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"201\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1oYfrbS48u9cOgrKbkTtDZqDMe4Wtu992B1b3DqYPxxg?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:41 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test ClientTest test_open_all_has_metadata\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"109\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:35 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"196\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1etI_m3g2XuaHS4A1LHDYx3govt2_tTR-04DYZFN-w7k?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:36 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3340\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"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\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:36 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"7368\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1etI_m3g2XuaHS4A1LHDYx3govt2_tTR-04DYZFN-w7k?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:37 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3340\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1AR1kJoHJqM82EwldLuoiifcHYG4Nzpimb9zZNplVS3I?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:37 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gWaoTng7uXOYAN9fK0tt3SQdXaONWPCf3UsEk3xRXwI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:38 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3331\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:39 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:39 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3331\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:40 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3359\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:40 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:41 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3345\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:42 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:42 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:43 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3306\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:44 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:45 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:45 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3306\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:46 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3340\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:47 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:47 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3331\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:48 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3345\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:49 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:49 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:50 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:51 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:52 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:52 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:53 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:53 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3324\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:54 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3324\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:55 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3324\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:55 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3324\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:56 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3324\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:56 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:57 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:58 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3306\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:58 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1etI_m3g2XuaHS4A1LHDYx3govt2_tTR-04DYZFN-w7k?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:14:59 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/ClientTest.test_open_by_key_has_metadata.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test ClientTest test_open_by_key_has_metadata\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"112\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:44 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"199\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Mt7PAP53WxrZzHTL49wbg_EOQy18omB4PD2aJLMBs2o?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:44 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1Mt7PAP53WxrZzHTL49wbg_EOQy18omB4PD2aJLMBs2o?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:45 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"209\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Mt7PAP53WxrZzHTL49wbg_EOQy18omB4PD2aJLMBs2o?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:45 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1Mt7PAP53WxrZzHTL49wbg_EOQy18omB4PD2aJLMBs2o?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:45 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"209\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1Mt7PAP53WxrZzHTL49wbg_EOQy18omB4PD2aJLMBs2o?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:46 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test ClientTest test_open_by_key_has_metadata\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"112\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:01 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"199\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1xfoDfgLzzkhzsZIhiuXdM0yQ3TLijRiEQ3BQY7lSbn0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:01 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1xfoDfgLzzkhzsZIhiuXdM0yQ3TLijRiEQ3BQY7lSbn0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:02 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1xfoDfgLzzkhzsZIhiuXdM0yQ3TLijRiEQ3BQY7lSbn0?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:03 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/ClientTest.test_open_by_name_has_metadata.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test ClientTest test_open_by_name_has_metadata\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"113\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:48 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"200\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1eheWgScd8RMa1VTKd93q7b646dtTz8RqSHroPLhJpEo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:49 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3344\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1eheWgScd8RMa1VTKd93q7b646dtTz8RqSHroPLhJpEo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:49 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"210\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"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\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:49 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"283\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1eheWgScd8RMa1VTKd93q7b646dtTz8RqSHroPLhJpEo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:50 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3344\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1eheWgScd8RMa1VTKd93q7b646dtTz8RqSHroPLhJpEo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:50 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"210\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1eheWgScd8RMa1VTKd93q7b646dtTz8RqSHroPLhJpEo?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:50 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test ClientTest test_open_by_name_has_metadata\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"113\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:06 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"200\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1B3X2PMfjF-uLQwvXV2jyGNBxJVEGwCJhoEBkFv-hLJ8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:07 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3344\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"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\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:07 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"283\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1B3X2PMfjF-uLQwvXV2jyGNBxJVEGwCJhoEBkFv-hLJ8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:08 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3344\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1B3X2PMfjF-uLQwvXV2jyGNBxJVEGwCJhoEBkFv-hLJ8?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:08 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/ClientTest.test_openall.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test ClientTest test_openall\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"95\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:53 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"182\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI\\\",\\n  \\\"name\\\": \\\"Test ClientTest test_openall\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:53 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3326\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:53 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"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\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:54 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"6927\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:54 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3326\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:54 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:54 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:55 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"180\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:55 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3331\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:55 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"197\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:55 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3359\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:56 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"225\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:56 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:56 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"201\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:56 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3345\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:56 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"211\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:57 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:57 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"180\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:57 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:57 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"180\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:57 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3306\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:58 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"172\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:58 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:58 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"180\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:58 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:59 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"180\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:59 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3306\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:59 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"172\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:53:59 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3340\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:00 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"206\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:00 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:00 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"180\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:00 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3331\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:01 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"197\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:01 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3345\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:01 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"211\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:01 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:02 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"180\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:02 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:02 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"198\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:02 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:02 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"180\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:03 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:03 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"198\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:03 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:03 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"198\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:04 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:04 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"180\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:04 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:04 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"198\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:04 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3324\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:05 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:05 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3324\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:05 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:05 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3324\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:06 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:06 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3324\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:06 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:06 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3324\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:07 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:07 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:07 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"180\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:07 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:08 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"180\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:08 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3306\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:08 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"172\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:08 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:08 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"201\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"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\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:09 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"265\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:09 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3326\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:09 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1SxYTfScQ92xtzBZjcvJU5RFi7nb-jTH07NaOCYEAtZI?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 17 Aug 2023 10:54:10 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test ClientTest test_openall\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"95\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:11 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"182\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PMpzoRDfFzOU6RJVL-E8JAI_ksJdSNvt3_Hq0M0yniA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:11 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3326\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"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\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:12 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"7354\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PMpzoRDfFzOU6RJVL-E8JAI_ksJdSNvt3_Hq0M0yniA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:13 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3326\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1AR1kJoHJqM82EwldLuoiifcHYG4Nzpimb9zZNplVS3I?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:13 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gWaoTng7uXOYAN9fK0tt3SQdXaONWPCf3UsEk3xRXwI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:13 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3331\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1a9CRk5n-PaXbrRspPvdFxRxkI-MBw1zy_kKoEhTz4E4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:13 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-V5ZgItMAHbXUsf22-7t82vV0TGiuNck8iVhlhQQg8Q?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:14 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3331\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_fYxgn5fuZXLd0Q8ZQLPuqWQYNwszImSWIWltaLQNFE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:14 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3359\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1tMQBseAZX7dlHLPhHI9nc-m5HZ9GJjl9easUr0ZyL4k?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:15 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1DMrHKOt1lpvYfwQFWlTwpwUWoRHTAKIS8qdgZrJ4M_o?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:15 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3345\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:15 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:15 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:16 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3306\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:16 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:17 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:17 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3306\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:17 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3340\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:18 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:18 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3331\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:18 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3345\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:19 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:19 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:20 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:20 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:21 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:21 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:21 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:21 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3324\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:22 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3324\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:22 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3324\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:23 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3324\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:23 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3324\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:23 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:24 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3314\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:24 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3306\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:25 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"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\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:25 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"265\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PMpzoRDfFzOU6RJVL-E8JAI_ksJdSNvt3_Hq0M0yniA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:25 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3326\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1PMpzoRDfFzOU6RJVL-E8JAI_ksJdSNvt3_Hq0M0yniA?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:26 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/SpreadsheetTest.test_add_del_worksheet.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_add_del_worksheet\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"110\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 09 Aug 2023 19:33:56 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"197\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 09 Aug 2023 19:33:57 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 09 Aug 2023 19:33:57 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"207\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 09 Aug 2023 19:33:57 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addSheet\\\": {\\\"properties\\\": {\\\"title\\\": \\\"test_add_del_worksheet 1\\\", \\\"sheetType\\\": \\\"GRID\\\", \\\"gridProperties\\\": {\\\"rowCount\\\": 1, \\\"columnCount\\\": 1}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"157\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 09 Aug 2023 19:33:58 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"395\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addSheet\\\": {\\\"properties\\\": {\\\"title\\\": \\\"test_add_del_worksheet 2\\\", \\\"sheetType\\\": \\\"GRID\\\", \\\"gridProperties\\\": {\\\"rowCount\\\": 1, \\\"columnCount\\\": 1}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"157\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 09 Aug 2023 19:33:58 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"394\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addSheet\\\": {\\\"properties\\\": {\\\"title\\\": \\\"test_add_del_worksheet 3\\\", \\\"sheetType\\\": \\\"GRID\\\", \\\"gridProperties\\\": {\\\"rowCount\\\": 1, \\\"columnCount\\\": 1}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"157\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 09 Aug 2023 19:33:58 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"395\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 09 Aug 2023 19:33:59 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"4114\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"deleteSheet\\\": {\\\"sheetId\\\": 1877059582}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"56\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 09 Aug 2023 19:33:59 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"deleteSheet\\\": {\\\"sheetId\\\": 580173816}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"55\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 09 Aug 2023 19:33:59 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"deleteSheet\\\": {\\\"sheetId\\\": 1396229743}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"56\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 09 Aug 2023 19:33:59 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 09 Aug 2023 19:34:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 09 Aug 2023 19:34:00 GMT\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_add_del_worksheet\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"110\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:28 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"197\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:29 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:29 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addSheet\\\": {\\\"properties\\\": {\\\"title\\\": \\\"test_add_del_worksheet 1\\\", \\\"sheetType\\\": \\\"GRID\\\", \\\"gridProperties\\\": {\\\"rowCount\\\": 1, \\\"columnCount\\\": 1}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"157\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:29 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"395\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addSheet\\\": {\\\"properties\\\": {\\\"title\\\": \\\"test_add_del_worksheet 2\\\", \\\"sheetType\\\": \\\"GRID\\\", \\\"gridProperties\\\": {\\\"rowCount\\\": 1, \\\"columnCount\\\": 1}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"157\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:30 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"395\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addSheet\\\": {\\\"properties\\\": {\\\"title\\\": \\\"test_add_del_worksheet 3\\\", \\\"sheetType\\\": \\\"GRID\\\", \\\"gridProperties\\\": {\\\"rowCount\\\": 1, \\\"columnCount\\\": 1}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"157\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:30 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"394\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:31 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"4114\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"deleteSheet\\\": {\\\"sheetId\\\": 2073684913}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"56\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:31 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"deleteSheet\\\": {\\\"sheetId\\\": 1450538767}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"56\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:32 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"deleteSheet\\\": {\\\"sheetId\\\": 154523652}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"55\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:32 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:33 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1c5sXchzanh0Sse0OhFrNYc1xvIJNfr-S2o4EzqrH3qw?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:33 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/SpreadsheetTest.test_bad_json_api_error.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_bad_json_api_error\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"111\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Sun, 22 Sep 2024 21:14:56 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"content-length\": [\n                        \"198\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YCFTdhfXm6o_JeYoFgYquVItZBeeAju8sF7Xuz1Tr-Y?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Sun, 22 Sep 2024 21:14:57 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"3342\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1YCFTdhfXm6o_JeYoFgYquVItZBeeAju8sF7Xuz1Tr-Y?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Sun, 22 Sep 2024 21:14:57 GMT\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/SpreadsheetTest.test_creationTime_prop.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_creationTime_prop\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"110\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 08 Aug 2023 12:38:58 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"197\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1U6fMIS3rMPQGI64eYeM2uctpeH-CoHngX-y0JWvOW0E?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 08 Aug 2023 12:38:59 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1U6fMIS3rMPQGI64eYeM2uctpeH-CoHngX-y0JWvOW0E?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 08 Aug 2023 12:39:00 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"207\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1U6fMIS3rMPQGI64eYeM2uctpeH-CoHngX-y0JWvOW0E?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 08 Aug 2023 12:39:00 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_creationTime_prop\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"110\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:35 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"197\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1lgDfMS0o1vlMLsB9J8rLWQ0ZkrQ_ypa_ND6_gEAKKBg?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:37 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1lgDfMS0o1vlMLsB9J8rLWQ0ZkrQ_ypa_ND6_gEAKKBg?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:37 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"207\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1lgDfMS0o1vlMLsB9J8rLWQ0ZkrQ_ypa_ND6_gEAKKBg?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:38 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_creationTime_prop\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"110\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:23:57 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"content-length\": [\n                        \"197\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1XP3wT11XfZzT7i7CAzLle7OsMBGW2ru79cc_2bDWpL4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:23:57 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1XP3wT11XfZzT7i7CAzLle7OsMBGW2ru79cc_2bDWpL4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:23:57 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"content-length\": [\n                        \"207\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1XP3wT11XfZzT7i7CAzLle7OsMBGW2ru79cc_2bDWpL4?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:23:59 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_creationTime_prop\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"110\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:25:14 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"content-length\": [\n                        \"197\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1CM4g1xXkFhQK2A849ggVmvAUc6sW1NqXziG3KGRmQMw\\\",\\n  \\\"name\\\": \\\"Test SpreadsheetTest test_creationTime_prop\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CM4g1xXkFhQK2A849ggVmvAUc6sW1NqXziG3KGRmQMw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:25:15 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1CM4g1xXkFhQK2A849ggVmvAUc6sW1NqXziG3KGRmQMw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:25:15 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"content-length\": [\n                        \"207\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1CM4g1xXkFhQK2A849ggVmvAUc6sW1NqXziG3KGRmQMw?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:25:16 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/SpreadsheetTest.test_export_spreadsheet.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_export_spreadsheet\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"111\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Jan 2024 23:34:40 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"198\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1prFqy9DWoiXkdkNFfwzFVOZBtuCrc8yXNZrEYvOX1j8\\\",\\n  \\\"name\\\": \\\"Test SpreadsheetTest test_export_spreadsheet\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1prFqy9DWoiXkdkNFfwzFVOZBtuCrc8yXNZrEYvOX1j8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Jan 2024 23:34:41 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"3342\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1prFqy9DWoiXkdkNFfwzFVOZBtuCrc8yXNZrEYvOX1j8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Jan 2024 23:34:41 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"3342\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1prFqy9DWoiXkdkNFfwzFVOZBtuCrc8yXNZrEYvOX1j8/values/%27Sheet1%27%21A1%3AB2?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"a1\\\", \\\"B2\\\"]], \\\"majorDimension\\\": null}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"50\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Jan 2024 23:34:41 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1prFqy9DWoiXkdkNFfwzFVOZBtuCrc8yXNZrEYvOX1j8\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:B1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 2,\\n  \\\"updatedCells\\\": 2\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1prFqy9DWoiXkdkNFfwzFVOZBtuCrc8yXNZrEYvOX1j8/export?mimeType=text%2Fcsv\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-GUploader-UploadID\": [\n                        \"ABPtcPpwN3m6BoHXvUu760qgpC4XkRuZw-tbLFB8MnBZ1Mnjy2ncYcTRbOVbisHbpw7vpA0mP9sIdCwnIg\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"5\"\n                    ],\n                    \"Access-Control-Allow-Credentials\": [\n                        \"true\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Expires\": [\n                        \"Tue, 30 Jan 2024 23:34:42 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/csv\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Jan 2024 23:34:42 GMT\"\n                    ],\n                    \"Content-Disposition\": [\n                        \"attachment\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"a1,B2\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1prFqy9DWoiXkdkNFfwzFVOZBtuCrc8yXNZrEYvOX1j8?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Jan 2024 23:34:42 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/SpreadsheetTest.test_get_lastUpdateTime.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_get_lastUpdateTime\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"111\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:30:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"content-length\": [\n                        \"198\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1r-GMohxVV3K91rV1lZHqzHr9B48HLpYD2-x8koAVsuM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:30:01 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3342\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1r-GMohxVV3K91rV1lZHqzHr9B48HLpYD2-x8koAVsuM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:30:01 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"content-length\": [\n                        \"208\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1r-GMohxVV3K91rV1lZHqzHr9B48HLpYD2-x8koAVsuM:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSpreadsheetProperties\\\": {\\\"properties\\\": {\\\"title\\\": \\\"\\\\ud83c\\\\udf8a Updated Title #123 \\\\ud83c\\\\udf89\\\"}, \\\"fields\\\": \\\"title\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"141\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:30:02 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1r-GMohxVV3K91rV1lZHqzHr9B48HLpYD2-x8koAVsuM\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1r-GMohxVV3K91rV1lZHqzHr9B48HLpYD2-x8koAVsuM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:30:02 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1r-GMohxVV3K91rV1lZHqzHr9B48HLpYD2-x8koAVsuM?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:30:03 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/SpreadsheetTest.test_get_worksheet.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_get_worksheet\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"106\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:38:52 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"193\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4\\\",\\n  \\\"name\\\": \\\"Test SpreadsheetTest test_get_worksheet\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:38:52 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3337\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:38:53 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"203\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:38:53 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3337\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:38:54 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_get_worksheet\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"106\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:44 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"193\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/18JLkf2V4nLc-ANCHhVDmNXXjBow2iuHAJMXpTbxyU_4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:44 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3337\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/18JLkf2V4nLc-ANCHhVDmNXXjBow2iuHAJMXpTbxyU_4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:45 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3337\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/18JLkf2V4nLc-ANCHhVDmNXXjBow2iuHAJMXpTbxyU_4?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:45 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/SpreadsheetTest.test_get_worksheet_by_id.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_get_worksheet_by_id\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"112\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 09 Aug 2023 19:17:57 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"content-length\": [\n                        \"199\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 09 Aug 2023 19:17:58 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 09 Aug 2023 19:17:58 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"content-length\": [\n                        \"209\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 09 Aug 2023 19:17:59 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 09 Aug 2023 19:17:59 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 09 Aug 2023 19:18:00 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_get_worksheet_by_id\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"112\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:47 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"199\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1yHJ4mfm3rjr7HbZ1XDSr-q1swtEf7YZIhqYt02iYS_s?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:48 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1yHJ4mfm3rjr7HbZ1XDSr-q1swtEf7YZIhqYt02iYS_s?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:48 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1yHJ4mfm3rjr7HbZ1XDSr-q1swtEf7YZIhqYt02iYS_s?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:48 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1yHJ4mfm3rjr7HbZ1XDSr-q1swtEf7YZIhqYt02iYS_s?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:49 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/SpreadsheetTest.test_lastUpdateTime_prop.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_lastUpdateTime_prop\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"112\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:02 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"199\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:02 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:03 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"209\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSpreadsheetProperties\\\": {\\\"properties\\\": {\\\"title\\\": \\\"\\\\ud83c\\\\udf8a Updated Title #123 \\\\ud83c\\\\udf89\\\"}, \\\"fields\\\": \\\"title\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"141\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:04 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:04 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:05 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/SpreadsheetTest.test_properties.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_properties\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"103\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:08 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1eKokod-R-Gc6ta54IaknBzzTq0PiqQLNrX0nFCzg7xw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:09 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1eKokod-R-Gc6ta54IaknBzzTq0PiqQLNrX0nFCzg7xw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:09 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"200\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1eKokod-R-Gc6ta54IaknBzzTq0PiqQLNrX0nFCzg7xw?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:10 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_properties\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"103\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:51 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1l2YDzsGIznJLR5b0aVX8eBjsuaJVN04XQPWJFdT6LnQ\\\",\\n  \\\"name\\\": \\\"Test SpreadsheetTest test_properties\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1l2YDzsGIznJLR5b0aVX8eBjsuaJVN04XQPWJFdT6LnQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:52 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1l2YDzsGIznJLR5b0aVX8eBjsuaJVN04XQPWJFdT6LnQ?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:53 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/SpreadsheetTest.test_sheet1.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_sheet1\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"99\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:12 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"186\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco\\\",\\n  \\\"name\\\": \\\"Test SpreadsheetTest test_sheet1\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:13 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3330\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:13 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"196\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:13 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3330\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:14 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_sheet1\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"99\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:55 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"186\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1hIk6o6M40oNY85dsfgbR1LBLzEVkl_Spr4lD8EErgRM\\\",\\n  \\\"name\\\": \\\"Test SpreadsheetTest test_sheet1\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1hIk6o6M40oNY85dsfgbR1LBLzEVkl_Spr4lD8EErgRM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:56 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3330\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1hIk6o6M40oNY85dsfgbR1LBLzEVkl_Spr4lD8EErgRM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:56 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3330\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1hIk6o6M40oNY85dsfgbR1LBLzEVkl_Spr4lD8EErgRM?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:57 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/SpreadsheetTest.test_timezone_and_locale.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_timezone_and_locale\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"112\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:18 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"199\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:19 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:19 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"209\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSpreadsheetProperties\\\": {\\\"properties\\\": {\\\"timeZone\\\": \\\"Europe/Paris\\\"}, \\\"fields\\\": \\\"timeZone\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"115\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:19 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSpreadsheetProperties\\\": {\\\"properties\\\": {\\\"locale\\\": \\\"fr_FR\\\"}, \\\"fields\\\": \\\"locale\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"104\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:20 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:20 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3348\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:21 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_timezone_and_locale\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"112\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:15:59 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"199\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1rGMbyD37UooCbJY8XPGbCxXknTz5aCmIvGJepNfyv_Q?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1rGMbyD37UooCbJY8XPGbCxXknTz5aCmIvGJepNfyv_Q:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSpreadsheetProperties\\\": {\\\"properties\\\": {\\\"timeZone\\\": \\\"Europe/Paris\\\"}, \\\"fields\\\": \\\"timeZone\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"115\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1rGMbyD37UooCbJY8XPGbCxXknTz5aCmIvGJepNfyv_Q\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1rGMbyD37UooCbJY8XPGbCxXknTz5aCmIvGJepNfyv_Q:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSpreadsheetProperties\\\": {\\\"properties\\\": {\\\"locale\\\": \\\"fr_FR\\\"}, \\\"fields\\\": \\\"locale\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"104\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1rGMbyD37UooCbJY8XPGbCxXknTz5aCmIvGJepNfyv_Q\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1rGMbyD37UooCbJY8XPGbCxXknTz5aCmIvGJepNfyv_Q?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:01 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3348\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1rGMbyD37UooCbJY8XPGbCxXknTz5aCmIvGJepNfyv_Q?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:01 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/SpreadsheetTest.test_update_title.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_update_title\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"105\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:24 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:26 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:27 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"202\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSpreadsheetProperties\\\": {\\\"properties\\\": {\\\"title\\\": \\\"\\\\ud83c\\\\udf8a Updated Title #123 \\\\ud83c\\\\udf89\\\"}, \\\"fields\\\": \\\"title\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"141\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:28 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:28 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3326\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:29 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_update_title\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"105\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:03 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1ZCGxAWbqRwPM1ChMdqZ3hnvvjWrKFNATPrxBFbZyVlY\\\",\\n  \\\"name\\\": \\\"Test SpreadsheetTest test_update_title\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZCGxAWbqRwPM1ChMdqZ3hnvvjWrKFNATPrxBFbZyVlY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:04 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZCGxAWbqRwPM1ChMdqZ3hnvvjWrKFNATPrxBFbZyVlY:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSpreadsheetProperties\\\": {\\\"properties\\\": {\\\"title\\\": \\\"\\\\ud83c\\\\udf8a Updated Title #123 \\\\ud83c\\\\udf89\\\"}, \\\"fields\\\": \\\"title\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"141\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:05 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1ZCGxAWbqRwPM1ChMdqZ3hnvvjWrKFNATPrxBFbZyVlY\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZCGxAWbqRwPM1ChMdqZ3hnvvjWrKFNATPrxBFbZyVlY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:05 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3326\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1ZCGxAWbqRwPM1ChMdqZ3hnvvjWrKFNATPrxBFbZyVlY?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:06 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/SpreadsheetTest.test_values_batch_get.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_values_batch_get\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"109\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:31 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"196\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:32 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3340\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:32 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"206\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addSheet\\\": {\\\"properties\\\": {\\\"title\\\": \\\"\\\\ud83c\\\\udf35 test_values_batch_get 1\\\", \\\"sheetType\\\": \\\"GRID\\\", \\\"gridProperties\\\": {\\\"rowCount\\\": 10, \\\"columnCount\\\": 10}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"171\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:33 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"400\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g/values/%F0%9F%8C%B5%20test_values_batch_get%201%21A1?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"\\\\ud83c\\\\udf47\\\", \\\"\\\\ud83c\\\\udf49\\\", \\\"\\\\ud83c\\\\udf4b\\\"], [\\\"\\\\ud83c\\\\udf50\\\", \\\"\\\\ud83c\\\\udf4e\\\", \\\"\\\\ud83c\\\\udf53\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"112\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:33 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"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\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:33 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"699\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"deleteSheet\\\": {\\\"sheetId\\\": 901015854}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"55\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:34 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:34 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_values_batch_get\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"109\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:08 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"196\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TogIJdf42VTCxLh2w6sQ60JI3cEpfGRktSN_xQ3YaTU?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:09 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3340\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TogIJdf42VTCxLh2w6sQ60JI3cEpfGRktSN_xQ3YaTU:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addSheet\\\": {\\\"properties\\\": {\\\"title\\\": \\\"\\\\ud83c\\\\udf35 test_values_batch_get 1\\\", \\\"sheetType\\\": \\\"GRID\\\", \\\"gridProperties\\\": {\\\"rowCount\\\": 10, \\\"columnCount\\\": 10}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"171\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:09 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"401\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TogIJdf42VTCxLh2w6sQ60JI3cEpfGRktSN_xQ3YaTU/values/%F0%9F%8C%B5%20test_values_batch_get%201%21A1?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"\\\\ud83c\\\\udf47\\\", \\\"\\\\ud83c\\\\udf49\\\", \\\"\\\\ud83c\\\\udf4b\\\"], [\\\"\\\\ud83c\\\\udf50\\\", \\\"\\\\ud83c\\\\udf4e\\\", \\\"\\\\ud83c\\\\udf53\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"112\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:09 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"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\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:10 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"699\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TogIJdf42VTCxLh2w6sQ60JI3cEpfGRktSN_xQ3YaTU:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"deleteSheet\\\": {\\\"sheetId\\\": 1623847058}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"56\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:10 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1TogIJdf42VTCxLh2w6sQ60JI3cEpfGRktSN_xQ3YaTU\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1TogIJdf42VTCxLh2w6sQ60JI3cEpfGRktSN_xQ3YaTU?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:11 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/SpreadsheetTest.test_values_get.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_values_get\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"103\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:37 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:38 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:38 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"200\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addSheet\\\": {\\\"properties\\\": {\\\"title\\\": \\\"\\\\ud83c\\\\udf35 test_values_get 1\\\", \\\"sheetType\\\": \\\"GRID\\\", \\\"gridProperties\\\": {\\\"rowCount\\\": 10, \\\"columnCount\\\": 10}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"165\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:39 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"394\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY/values/%F0%9F%8C%B5%20test_values_get%201%21A1?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"\\\\ud83c\\\\udf47\\\", \\\"\\\\ud83c\\\\udf49\\\", \\\"\\\\ud83c\\\\udf4b\\\"], [\\\"\\\\ud83c\\\\udf50\\\", \\\"\\\\ud83c\\\\udf4e\\\", \\\"\\\\ud83c\\\\udf53\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"112\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:39 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"186\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY/values/%F0%9F%8C%B5%20test_values_get%201\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:40 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"203\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"deleteSheet\\\": {\\\"sheetId\\\": 463885193}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"55\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:40 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:41 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_values_get\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"103\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:13 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1aGOGeR-trvcbyqNBy_hi1eIlZ6cnkKxEkpXGccq10Fc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:13 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1aGOGeR-trvcbyqNBy_hi1eIlZ6cnkKxEkpXGccq10Fc:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addSheet\\\": {\\\"properties\\\": {\\\"title\\\": \\\"\\\\ud83c\\\\udf35 test_values_get 1\\\", \\\"sheetType\\\": \\\"GRID\\\", \\\"gridProperties\\\": {\\\"rowCount\\\": 10, \\\"columnCount\\\": 10}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"165\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:14 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"394\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1aGOGeR-trvcbyqNBy_hi1eIlZ6cnkKxEkpXGccq10Fc/values/%F0%9F%8C%B5%20test_values_get%201%21A1?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"\\\\ud83c\\\\udf47\\\", \\\"\\\\ud83c\\\\udf49\\\", \\\"\\\\ud83c\\\\udf4b\\\"], [\\\"\\\\ud83c\\\\udf50\\\", \\\"\\\\ud83c\\\\udf4e\\\", \\\"\\\\ud83c\\\\udf53\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"112\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:15 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"186\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1aGOGeR-trvcbyqNBy_hi1eIlZ6cnkKxEkpXGccq10Fc/values/%F0%9F%8C%B5%20test_values_get%201\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:15 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"203\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1aGOGeR-trvcbyqNBy_hi1eIlZ6cnkKxEkpXGccq10Fc:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"deleteSheet\\\": {\\\"sheetId\\\": 269627643}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"55\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:15 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1aGOGeR-trvcbyqNBy_hi1eIlZ6cnkKxEkpXGccq10Fc\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1aGOGeR-trvcbyqNBy_hi1eIlZ6cnkKxEkpXGccq10Fc?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:16 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/SpreadsheetTest.test_worksheet.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_worksheet\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"102\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:43 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"189\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:44 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3333\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:44 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"199\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:44 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3333\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:45 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_worksheet\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"102\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:18 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"189\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1hlhy0xKJkeNNb52JkkJ8-XW4F38I41suQWuc_thc2kk?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:19 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3333\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1hlhy0xKJkeNNb52JkkJ8-XW4F38I41suQWuc_thc2kk?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:19 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3333\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1hlhy0xKJkeNNb52JkkJ8-XW4F38I41suQWuc_thc2kk?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:20 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/SpreadsheetTest.test_worksheet_iteration.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_worksheet_iteration\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"112\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:48 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"199\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:49 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:49 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"209\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:49 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:49 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:50 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_worksheet_iteration\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"112\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:21 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"199\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1esgdc2HSl-F9fVuTwWat-hqA6SRjCwHI6RUQNsRSEpo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:22 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1esgdc2HSl-F9fVuTwWat-hqA6SRjCwHI6RUQNsRSEpo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:23 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1esgdc2HSl-F9fVuTwWat-hqA6SRjCwHI6RUQNsRSEpo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:23 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1esgdc2HSl-F9fVuTwWat-hqA6SRjCwHI6RUQNsRSEpo?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:24 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/SpreadsheetTest.test_worksheets.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_worksheets\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"103\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:54 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo\\\",\\n  \\\"name\\\": \\\"Test SpreadsheetTest test_worksheets\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:55 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:55 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"200\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:55 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addSheet\\\": {\\\"properties\\\": {\\\"title\\\": \\\"finances\\\", \\\"sheetType\\\": \\\"GRID\\\", \\\"gridProperties\\\": {\\\"rowCount\\\": 100, \\\"columnCount\\\": 100}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"145\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:56 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"383\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:56 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3580\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:39:57 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_worksheets\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"103\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:26 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1EhOPN8aRbwSJeN4SFBOgbuJmh_UQgZsQ3LRN5lr4tAE\\\",\\n  \\\"name\\\": \\\"Test SpreadsheetTest test_worksheets\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1EhOPN8aRbwSJeN4SFBOgbuJmh_UQgZsQ3LRN5lr4tAE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:26 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1EhOPN8aRbwSJeN4SFBOgbuJmh_UQgZsQ3LRN5lr4tAE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:26 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1EhOPN8aRbwSJeN4SFBOgbuJmh_UQgZsQ3LRN5lr4tAE:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addSheet\\\": {\\\"properties\\\": {\\\"title\\\": \\\"finances\\\", \\\"sheetType\\\": \\\"GRID\\\", \\\"gridProperties\\\": {\\\"rowCount\\\": 100, \\\"columnCount\\\": 100}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"145\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:27 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"382\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1EhOPN8aRbwSJeN4SFBOgbuJmh_UQgZsQ3LRN5lr4tAE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:27 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3579\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1EhOPN8aRbwSJeN4SFBOgbuJmh_UQgZsQ3LRN5lr4tAE?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:28 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/SpreadsheetTest.test_worksheets_exclude_hidden.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_worksheets_exclude_hidden\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"118\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:01 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"205\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:01 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3349\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:01 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"215\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addSheet\\\": {\\\"properties\\\": {\\\"title\\\": \\\"finances\\\", \\\"sheetType\\\": \\\"GRID\\\", \\\"gridProperties\\\": {\\\"rowCount\\\": 100, \\\"columnCount\\\": 100}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"145\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:02 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"383\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addSheet\\\": {\\\"properties\\\": {\\\"title\\\": \\\"gacha\\\", \\\"sheetType\\\": \\\"GRID\\\", \\\"gridProperties\\\": {\\\"rowCount\\\": 100, \\\"columnCount\\\": 100}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"142\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:02 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"379\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 755875121, \\\"hidden\\\": true}, \\\"fields\\\": \\\"hidden\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"117\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:03 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:03 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3861\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:03 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3861\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:04 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test SpreadsheetTest test_worksheets_exclude_hidden\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"118\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:30 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"205\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:31 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3349\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addSheet\\\": {\\\"properties\\\": {\\\"title\\\": \\\"finances\\\", \\\"sheetType\\\": \\\"GRID\\\", \\\"gridProperties\\\": {\\\"rowCount\\\": 100, \\\"columnCount\\\": 100}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"145\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:31 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"383\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addSheet\\\": {\\\"properties\\\": {\\\"title\\\": \\\"gacha\\\", \\\"sheetType\\\": \\\"GRID\\\", \\\"gridProperties\\\": {\\\"rowCount\\\": 100, \\\"columnCount\\\": 100}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"142\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:32 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"380\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 1004156603, \\\"hidden\\\": true}, \\\"fields\\\": \\\"hidden\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"118\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:32 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:33 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3862\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:33 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3862\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1euXd4VAWnNrAuedC3EbyuUUYx0txUE70U6hQEMP-EDs?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:33 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_acell.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_acell\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"96\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:46 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"183\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8\\\",\\n  \\\"name\\\": \\\"Test WorksheetTest test_acell\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:46 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3327\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:46 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"193\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:47 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3327\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:47 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:47 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"55\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:48 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_acell\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"96\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:36 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"183\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1EA9Rqkg5aE29MOZAWLtQE58eLHoGSepGvuYWu7jO9no\\\",\\n  \\\"name\\\": \\\"Test WorksheetTest test_acell\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1EA9Rqkg5aE29MOZAWLtQE58eLHoGSepGvuYWu7jO9no?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:37 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3327\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1EA9Rqkg5aE29MOZAWLtQE58eLHoGSepGvuYWu7jO9no?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:38 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3327\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1EA9Rqkg5aE29MOZAWLtQE58eLHoGSepGvuYWu7jO9no/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:38 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1EA9Rqkg5aE29MOZAWLtQE58eLHoGSepGvuYWu7jO9no\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1EA9Rqkg5aE29MOZAWLtQE58eLHoGSepGvuYWu7jO9no/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:38 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"55\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1EA9Rqkg5aE29MOZAWLtQE58eLHoGSepGvuYWu7jO9no?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:39 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_add_protected_range_normal.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_add_protected_range_normal\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"117\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 15 Mar 2024 15:59:12 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"content-length\": [\n                        \"204\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZiVLfW42k1aWaar0_6PjvOteg-2jvWNc2S3X5hK4HDI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 15 Mar 2024 15:59:12 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3348\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZiVLfW42k1aWaar0_6PjvOteg-2jvWNc2S3X5hK4HDI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 15 Mar 2024 15:59:13 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3348\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZiVLfW42k1aWaar0_6PjvOteg-2jvWNc2S3X5hK4HDI/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 15 Mar 2024 15:59:13 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1ZiVLfW42k1aWaar0_6PjvOteg-2jvWNc2S3X5hK4HDI\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZiVLfW42k1aWaar0_6PjvOteg-2jvWNc2S3X5hK4HDI:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addProtectedRange\\\": {\\\"protectedRange\\\": {\\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 2, \\\"sheetId\\\": 0}, \\\"description\\\": null, \\\"warningOnly\\\": false, \\\"requestingUserCanEdit\\\": false, \\\"editors\\\": {\\\"users\\\": [], \\\"groups\\\": []}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"281\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 15 Mar 2024 15:59:14 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"447\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZiVLfW42k1aWaar0_6PjvOteg-2jvWNc2S3X5hK4HDI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 15 Mar 2024 15:59:14 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3798\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1ZiVLfW42k1aWaar0_6PjvOteg-2jvWNc2S3X5hK4HDI?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 15 Mar 2024 15:59:14 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_add_protected_range_warning.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_add_protected_range_warning\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"118\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 15 Mar 2024 16:02:28 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"205\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1qDH86R-bTDHWk4vQNxULR1_FE9ITfAgQg1chupRJ-2s?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 15 Mar 2024 16:02:29 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"3349\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1qDH86R-bTDHWk4vQNxULR1_FE9ITfAgQg1chupRJ-2s?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 15 Mar 2024 16:02:30 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"3349\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1qDH86R-bTDHWk4vQNxULR1_FE9ITfAgQg1chupRJ-2s/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 15 Mar 2024 16:02:30 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1qDH86R-bTDHWk4vQNxULR1_FE9ITfAgQg1chupRJ-2s\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1qDH86R-bTDHWk4vQNxULR1_FE9ITfAgQg1chupRJ-2s:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addProtectedRange\\\": {\\\"protectedRange\\\": {\\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 2, \\\"sheetId\\\": 0}, \\\"description\\\": null, \\\"warningOnly\\\": true, \\\"requestingUserCanEdit\\\": false, \\\"editors\\\": null}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"257\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 15 Mar 2024 16:02:30 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"478\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1qDH86R-bTDHWk4vQNxULR1_FE9ITfAgQg1chupRJ-2s?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 15 Mar 2024 16:02:31 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"3830\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1qDH86R-bTDHWk4vQNxULR1_FE9ITfAgQg1chupRJ-2s?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 15 Mar 2024 16:02:31 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_add_validation.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_add_validation\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"105\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Fri, 29 Mar 2024 06:00:41 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1yOY1U4tsuCpKdLXnrrfpGtUtmIFCHLzXbYVJrbLlmCA\\\",\\n  \\\"name\\\": \\\"Test WorksheetTest test_add_validation\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1yOY1U4tsuCpKdLXnrrfpGtUtmIFCHLzXbYVJrbLlmCA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Fri, 29 Mar 2024 06:00:42 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1yOY1U4tsuCpKdLXnrrfpGtUtmIFCHLzXbYVJrbLlmCA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Fri, 29 Mar 2024 06:00:42 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1yOY1U4tsuCpKdLXnrrfpGtUtmIFCHLzXbYVJrbLlmCA/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Fri, 29 Mar 2024 06:00:42 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1yOY1U4tsuCpKdLXnrrfpGtUtmIFCHLzXbYVJrbLlmCA\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1yOY1U4tsuCpKdLXnrrfpGtUtmIFCHLzXbYVJrbLlmCA:batchUpdate\",\n                \"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\\\"}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"293\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Fri, 29 Mar 2024 06:00:43 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1yOY1U4tsuCpKdLXnrrfpGtUtmIFCHLzXbYVJrbLlmCA\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1yOY1U4tsuCpKdLXnrrfpGtUtmIFCHLzXbYVJrbLlmCA/values/%27Sheet1%27%21A1?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": \\\"X\\\", \\\"majorDimension\\\": null}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"39\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 400,\n                    \"message\": \"Bad Request\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Fri, 29 Mar 2024 06:00:43 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"491\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1yOY1U4tsuCpKdLXnrrfpGtUtmIFCHLzXbYVJrbLlmCA?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Fri, 29 Mar 2024 06:00:44 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_append_row.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_append_row\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"101\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:52 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"188\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:52 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:53 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"198\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:53 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:53 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"225\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:54 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"266\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0/values/%27Sheet1%27%21A1%3A1\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:54 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"359\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:55 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_append_row\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"101\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:41 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"188\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1FX4qhbbAen9uK9WZ7dhjCU-JIEjfrzIqnJoC5zWmEFM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:42 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1FX4qhbbAen9uK9WZ7dhjCU-JIEjfrzIqnJoC5zWmEFM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:42 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1FX4qhbbAen9uK9WZ7dhjCU-JIEjfrzIqnJoC5zWmEFM/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:43 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1FX4qhbbAen9uK9WZ7dhjCU-JIEjfrzIqnJoC5zWmEFM\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1FX4qhbbAen9uK9WZ7dhjCU-JIEjfrzIqnJoC5zWmEFM/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"225\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:43 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"266\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1FX4qhbbAen9uK9WZ7dhjCU-JIEjfrzIqnJoC5zWmEFM/values/%27Sheet1%27%21A1%3A1\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:44 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"359\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1FX4qhbbAen9uK9WZ7dhjCU-JIEjfrzIqnJoC5zWmEFM?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:44 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_append_row_with_empty_value.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_append_row_with_empty_value\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"118\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:59 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"205\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:40:59 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3349\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:00 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"215\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:00 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3349\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:00 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_append_row_with_empty_value 1\\\", \\\"\\\", \\\"test_append_row_with_empty_value 3\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"94\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:00 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"264\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_append_row_with_empty_value 1\\\", \\\"\\\", \\\"test_append_row_with_empty_value 3\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"94\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:01 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"293\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0/values/%27Sheet1%27%21A2%3A2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:01 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"206\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:02 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_append_row_with_empty_value\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"118\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:47 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"205\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:48 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3349\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:48 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3349\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:49 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_append_row_with_empty_value 1\\\", \\\"\\\", \\\"test_append_row_with_empty_value 3\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"94\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:49 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"264\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_append_row_with_empty_value 1\\\", \\\"\\\", \\\"test_append_row_with_empty_value 3\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"94\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:50 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"293\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY/values/%27Sheet1%27%21A2%3A2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:50 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"206\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1IdFTLTKxYB2wsi5Xtvh1jq1rw8DbOhxzyAlRjvkneVY?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:51 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_append_row_with_empty_value_and_table_range.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_append_row_with_empty_value_and_table_range\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"134\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:05 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"221\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:06 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3365\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:06 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"231\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:06 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3365\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:07 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_append_row_with_empty_value_and_table_range 1\\\", \\\"\\\", \\\"test_append_row_with_empty_value_and_table_range 3\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"126\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:07 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"264\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8/values/%27Sheet1%27%21A1:append?valueInputOption=RAW&includeValuesInResponse=False\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_append_row_with_empty_value_and_table_range 1\\\", \\\"\\\", \\\"test_append_row_with_empty_value_and_table_range 3\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"126\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:07 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"293\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8/values/%27Sheet1%27%21A2%3A2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:07 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"218\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:08 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_append_row_with_empty_value_and_table_range\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"134\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:53 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"221\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:54 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3365\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:54 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3365\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:54 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_append_row_with_empty_value_and_table_range 1\\\", \\\"\\\", \\\"test_append_row_with_empty_value_and_table_range 3\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"126\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:55 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"264\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ/values/%27Sheet1%27%21A1:append?valueInputOption=RAW&includeValuesInResponse=False\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_append_row_with_empty_value_and_table_range 1\\\", \\\"\\\", \\\"test_append_row_with_empty_value_and_table_range 3\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"126\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:55 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"293\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ/values/%27Sheet1%27%21A2%3A2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:56 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"218\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1MELM1EhQrnEZ9iFHbMpWDQ-ROeW0G454QH0lMRkwxoQ?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:56 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_attributes.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_attributes\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"101\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 01 Feb 2024 19:23:23 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"content-length\": [\n                        \"188\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1n9kTJ3vNx8FMrBPX65aRw__2eiVXlThTujgAdHwBg8k\\\",\\n  \\\"name\\\": \\\"Test WorksheetTest test_attributes\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1n9kTJ3vNx8FMrBPX65aRw__2eiVXlThTujgAdHwBg8k?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 01 Feb 2024 19:23:24 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1n9kTJ3vNx8FMrBPX65aRw__2eiVXlThTujgAdHwBg8k?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 01 Feb 2024 19:23:24 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1n9kTJ3vNx8FMrBPX65aRw__2eiVXlThTujgAdHwBg8k/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 01 Feb 2024 19:23:25 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1n9kTJ3vNx8FMrBPX65aRw__2eiVXlThTujgAdHwBg8k\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1n9kTJ3vNx8FMrBPX65aRw__2eiVXlThTujgAdHwBg8k?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 01 Feb 2024 19:23:26 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_auto_resize_columns.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_auto_resize_columns\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"110\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:11 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"197\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:11 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:12 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"207\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:12 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:12 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"1042\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:12 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo?fields=sheets.data.columnMetadata\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:13 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"1679\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"autoResizeDimensions\\\": {\\\"dimensions\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"COLUMNS\\\", \\\"startIndex\\\": 0, \\\"endIndex\\\": 1}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"128\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:13 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo?fields=sheets.data.columnMetadata\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:13 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"1680\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:14 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_auto_resize_columns\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"110\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:58 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"197\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:59 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:16:59 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"1042\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo?fields=sheets.data.columnMetadata\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"1679\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"autoResizeDimensions\\\": {\\\"dimensions\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"COLUMNS\\\", \\\"startIndex\\\": 0, \\\"endIndex\\\": 1}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"128\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:01 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo?fields=sheets.data.columnMetadata\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:01 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"1680\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1HYTxRO6YTQmihuoCOZbBWV-mSnwSKqqfb-EaHQhK6wo?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:02 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_basic_filters.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_basic_filters\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"104\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:17 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"191\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:18 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:18 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"201\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:18 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:19 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 20, \\\"columnCount\\\": 20}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"192\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:19 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"setBasicFilter\\\": {\\\"filter\\\": {\\\"range\\\": {\\\"sheetId\\\": 0}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"73\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:19 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:19 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3517\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"setBasicFilter\\\": {\\\"filter\\\": {\\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 1, \\\"endColumnIndex\\\": 3, \\\"sheetId\\\": 0}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"155\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:20 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:20 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3515\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"setBasicFilter\\\": {\\\"filter\\\": {\\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 1, \\\"endColumnIndex\\\": 3, \\\"sheetId\\\": 0}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"155\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:20 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:20 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3515\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"clearBasicFilter\\\": {\\\"sheetId\\\": 0}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"52\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:21 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:21 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3333\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:22 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_basic_filters\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"104\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:04 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"191\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM\\\",\\n  \\\"name\\\": \\\"Test WorksheetTest test_basic_filters\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:05 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:05 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:06 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 20, \\\"columnCount\\\": 20}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"192\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:06 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"setBasicFilter\\\": {\\\"filter\\\": {\\\"range\\\": {\\\"sheetId\\\": 0}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"73\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:06 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:07 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3517\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"setBasicFilter\\\": {\\\"filter\\\": {\\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 1, \\\"endColumnIndex\\\": 3, \\\"sheetId\\\": 0}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"155\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:07 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:07 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3515\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"setBasicFilter\\\": {\\\"filter\\\": {\\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 1, \\\"endColumnIndex\\\": 3, \\\"sheetId\\\": 0}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"155\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:07 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:07 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3515\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"clearBasicFilter\\\": {\\\"sheetId\\\": 0}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"52\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:08 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:08 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3333\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1Y4Sgf7sfGbe1ZGRmSpKXf902yhjt7d9phOhY4qf0elM?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:08 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_batch_clear.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_batch_clear\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"102\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:26 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"189\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:26 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3333\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:27 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"199\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:27 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3333\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:27 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:28 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3333\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21A1%3AB1\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:28 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:B1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21C2%3AE2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:28 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!C2:E2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21A1%3AB1?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"12345\\\", \\\"ThisIsText\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"37\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:28 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:B1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 2,\\n  \\\"updatedCells\\\": 2\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21C2%3AE2?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"5678\\\", \\\"Second\\\", \\\"Text\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"40\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:29 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!C2:E2\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 3,\\n  \\\"updatedCells\\\": 3\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21A1%3AB1\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:29 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"123\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:B1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"12345\\\",\\n      \\\"ThisIsText\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21C2%3AE2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:29 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"132\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!C2:E2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"5678\\\",\\n      \\\"Second\\\",\\n      \\\"Text\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values:batchClear\",\n                \"body\": \"{\\\"ranges\\\": [\\\"'Sheet1'!A1:B1\\\", \\\"'Sheet1'!C2:E2\\\"]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"48\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:29 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"135\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\\\",\\n  \\\"clearedRanges\\\": [\\n    \\\"Sheet1!A1:B1\\\",\\n    \\\"Sheet1!C2:E2\\\"\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21A1%3AB1\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:30 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:B1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21C2%3AE2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:30 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!C2:E2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:31 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_batch_clear\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"102\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:11 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"189\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:11 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3333\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:12 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3333\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:12 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:12 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3333\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4/values/%27Sheet1%27%21A1%3AB1\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:12 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:B1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4/values/%27Sheet1%27%21C2%3AE2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:13 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!C2:E2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4/values/%27Sheet1%27%21A1%3AB1?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"12345\\\", \\\"ThisIsText\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"37\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:13 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:B1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 2,\\n  \\\"updatedCells\\\": 2\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4/values/%27Sheet1%27%21C2%3AE2?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"5678\\\", \\\"Second\\\", \\\"Text\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"40\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:13 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!C2:E2\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 3,\\n  \\\"updatedCells\\\": 3\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4/values/%27Sheet1%27%21A1%3AB1\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:14 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"123\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:B1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"12345\\\",\\n      \\\"ThisIsText\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4/values/%27Sheet1%27%21C2%3AE2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:14 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"132\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!C2:E2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"5678\\\",\\n      \\\"Second\\\",\\n      \\\"Text\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4/values:batchClear\",\n                \"body\": \"{\\\"ranges\\\": [\\\"'Sheet1'!A1:B1\\\", \\\"'Sheet1'!C2:E2\\\"]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"48\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:14 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"135\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4\\\",\\n  \\\"clearedRanges\\\": [\\n    \\\"Sheet1!A1:B1\\\",\\n    \\\"Sheet1!C2:E2\\\"\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4/values/%27Sheet1%27%21A1%3AB1\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:15 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:B1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4/values/%27Sheet1%27%21C2%3AE2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:15 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!C2:E2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1CtMekRmF8nG2sXyiN7TZLzCRNOZg7p1rBgOF5__IeN4?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:15 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_batch_get.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_batch_get\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"100\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:33 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"187\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo\\\",\\n  \\\"name\\\": \\\"Test WorksheetTest test_batch_get\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:34 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3331\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:34 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"197\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:34 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3331\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:35 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo/values/%27Sheet1%27%21A1?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"A1\\\", \\\"B1\\\", \\\"\\\", \\\"D1\\\"], [\\\"\\\", \\\"b2\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"A4\\\", \\\"B4\\\", \\\"\\\", \\\"D4\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"98\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:35 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo/values:batchGet?ranges=%27Sheet1%27%21A1%3AB1&ranges=%27Sheet1%27%21B4%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:35 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"413\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:36 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_batch_get\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"100\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:19 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"187\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1DMLdc6LFrs5LnTT6TlW--tCu_mQi0yzv9MQuuOnqYCc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:20 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3331\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1DMLdc6LFrs5LnTT6TlW--tCu_mQi0yzv9MQuuOnqYCc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:20 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3331\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1DMLdc6LFrs5LnTT6TlW--tCu_mQi0yzv9MQuuOnqYCc/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:21 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1DMLdc6LFrs5LnTT6TlW--tCu_mQi0yzv9MQuuOnqYCc\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1DMLdc6LFrs5LnTT6TlW--tCu_mQi0yzv9MQuuOnqYCc/values/%27Sheet1%27%21A1?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"A1\\\", \\\"B1\\\", \\\"\\\", \\\"D1\\\"], [\\\"\\\", \\\"b2\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"A4\\\", \\\"B4\\\", \\\"\\\", \\\"D4\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"98\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:21 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1DMLdc6LFrs5LnTT6TlW--tCu_mQi0yzv9MQuuOnqYCc\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1DMLdc6LFrs5LnTT6TlW--tCu_mQi0yzv9MQuuOnqYCc/values:batchGet?ranges=%27Sheet1%27%21A1%3AB1&ranges=%27Sheet1%27%21B4%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:22 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"413\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1DMLdc6LFrs5LnTT6TlW--tCu_mQi0yzv9MQuuOnqYCc?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:22 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_batch_merged_cells.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_batch_merged_cells\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"109\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 24 Sep 2024 16:46:38 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"196\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 24 Sep 2024 16:46:39 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3340\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 24 Sep 2024 16:46:40 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3340\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 24 Sep 2024 16:46:41 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 24 Sep 2024 16:46:42 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"1\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"title\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"2\\\", \\\"\\\"], [\\\"num\\\", \\\"val\\\", \\\"\\\", \\\"0\\\"]], \\\"majorDimension\\\": null}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"122\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 24 Sep 2024 16:46:43 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY:batchUpdate\",\n                \"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\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"467\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 24 Sep 2024 16:46:43 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"113\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY\\\",\\n  \\\"replies\\\": [\\n    {},\\n    {},\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 24 Sep 2024 16:46:44 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"248\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 24 Sep 2024 16:46:45 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"248\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 24 Sep 2024 16:46:45 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3788\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY/values/%27Sheet1%27%21A1%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 24 Sep 2024 16:46:46 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"248\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 24 Sep 2024 16:46:47 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3788\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1z_YjzCNQiR55V8p6KJKYEE4teROoa1OGD0ziuTadlpY?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 24 Sep 2024 16:46:48 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_batch_update.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_batch_update\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"103\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:40 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:41 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:41 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"200\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:41 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:42 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w/values:batchUpdate\",\n                \"body\": \"{\\\"valueInputOption\\\": \\\"RAW\\\", \\\"data\\\": [{\\\"range\\\": \\\"'Sheet1'!A1:D1\\\", \\\"values\\\": [[\\\"A1\\\", \\\"B1\\\", \\\"\\\", \\\"D1\\\"]]}, {\\\"range\\\": \\\"'Sheet1'!A4:D4\\\", \\\"values\\\": [[\\\"A4\\\", \\\"B4\\\", \\\"\\\", \\\"D4\\\"]]}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"167\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:42 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"591\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w/values/%27Sheet1%27%21A1%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:42 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"208\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:43 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_batch_update\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"103\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:26 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1oWisDLVdA2FTMhKuYUmiAU14r26qTLfTu1V69YwwkM4\\\",\\n  \\\"name\\\": \\\"Test WorksheetTest test_batch_update\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1oWisDLVdA2FTMhKuYUmiAU14r26qTLfTu1V69YwwkM4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:27 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1oWisDLVdA2FTMhKuYUmiAU14r26qTLfTu1V69YwwkM4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:27 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1oWisDLVdA2FTMhKuYUmiAU14r26qTLfTu1V69YwwkM4/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:27 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1oWisDLVdA2FTMhKuYUmiAU14r26qTLfTu1V69YwwkM4\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1oWisDLVdA2FTMhKuYUmiAU14r26qTLfTu1V69YwwkM4/values:batchUpdate\",\n                \"body\": \"{\\\"valueInputOption\\\": \\\"RAW\\\", \\\"data\\\": [{\\\"range\\\": \\\"'Sheet1'!A1:D1\\\", \\\"values\\\": [[\\\"A1\\\", \\\"B1\\\", \\\"\\\", \\\"D1\\\"]]}, {\\\"range\\\": \\\"'Sheet1'!A4:D4\\\", \\\"values\\\": [[\\\"A4\\\", \\\"B4\\\", \\\"\\\", \\\"D4\\\"]]}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"167\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:28 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"591\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1oWisDLVdA2FTMhKuYUmiAU14r26qTLfTu1V69YwwkM4/values/%27Sheet1%27%21A1%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:28 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"208\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1oWisDLVdA2FTMhKuYUmiAU14r26qTLfTu1V69YwwkM4?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:29 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_cell.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_cell\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"95\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:46 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"182\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:46 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3326\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:47 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:47 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3326\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:47 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:48 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"55\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:48 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_cell\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"95\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:32 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"182\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1SDOJBKUdmYSuj9HYGrnizZ6HRbGLEa1aEl72GBEYjng\\\",\\n  \\\"name\\\": \\\"Test WorksheetTest test_cell\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SDOJBKUdmYSuj9HYGrnizZ6HRbGLEa1aEl72GBEYjng?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:32 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3326\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SDOJBKUdmYSuj9HYGrnizZ6HRbGLEa1aEl72GBEYjng?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:33 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3326\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SDOJBKUdmYSuj9HYGrnizZ6HRbGLEa1aEl72GBEYjng/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:33 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1SDOJBKUdmYSuj9HYGrnizZ6HRbGLEa1aEl72GBEYjng\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SDOJBKUdmYSuj9HYGrnizZ6HRbGLEa1aEl72GBEYjng/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:33 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"55\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1SDOJBKUdmYSuj9HYGrnizZ6HRbGLEa1aEl72GBEYjng?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:34 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_cell_return_first.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_cell_return_first\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"108\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 01 Feb 2024 19:55:41 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"195\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1oR6zRLu7eQp4Po6Dtrx2VpitERPciAlIQxy9QDsKW3E?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 01 Feb 2024 19:55:42 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3339\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1oR6zRLu7eQp4Po6Dtrx2VpitERPciAlIQxy9QDsKW3E?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 01 Feb 2024 19:55:42 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3339\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1oR6zRLu7eQp4Po6Dtrx2VpitERPciAlIQxy9QDsKW3E/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 01 Feb 2024 19:55:43 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1oR6zRLu7eQp4Po6Dtrx2VpitERPciAlIQxy9QDsKW3E\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1oR6zRLu7eQp4Po6Dtrx2VpitERPciAlIQxy9QDsKW3E/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 01 Feb 2024 19:55:44 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"55\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1oR6zRLu7eQp4Po6Dtrx2VpitERPciAlIQxy9QDsKW3E?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 01 Feb 2024 19:55:44 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_clear.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_clear\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"96\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:51 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"183\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:52 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3327\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:52 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"193\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:52 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3327\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:52 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/values/%27Sheet1%27%21A1%3AD6\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:53 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:D6\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"A1\\\", \\\"B1\\\", \\\"\\\", \\\"D1\\\"], [1, \\\"b2\\\", 1.45, \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"A4\\\", 0.4, \\\"\\\", 4]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"131\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:53 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D6\\\",\\n  \\\"updatedRows\\\": 6,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 24\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:53 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:53 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"61\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:Z1000\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:54 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_clear\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"96\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:38 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"183\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I\\\",\\n  \\\"name\\\": \\\"Test WorksheetTest test_clear\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:39 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3327\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:39 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3327\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:39 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I/values/%27Sheet1%27%21A1%3AD6\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:40 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:D6\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"A1\\\", \\\"B1\\\", \\\"\\\", \\\"D1\\\"], [1, \\\"b2\\\", 1.45, \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"A4\\\", 0.4, \\\"\\\", 4]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"131\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:40 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D6\\\",\\n  \\\"updatedRows\\\": 6,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 24\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:41 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:41 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"61\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:Z1000\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/10RQB_0QQbFUp4GsUcefq3THU4PKCIOhr89tzP78c93I?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:42 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_clear_tab_color.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_clear_tab_color\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"106\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:57 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"193\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:58 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3337\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:58 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"203\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:58 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3337\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:59 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes?fields=sheets.properties.tabColorStyle\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:59 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"57\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"sheets\\\": [\\n    {\\n      \\\"properties\\\": {}\\n    }\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"tabColorStyle\\\": {\\\"rgbColor\\\": {\\\"red\\\": 1, \\\"green\\\": 0, \\\"blue\\\": 0.5}}}, \\\"fields\\\": \\\"tabColorStyle\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"168\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:59 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"tabColorStyle\\\": {\\\"rgbColor\\\": null}}, \\\"fields\\\": \\\"tabColorStyle\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"137\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:41:59 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes?fields=sheets.properties.tabColorStyle\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:00 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"57\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"sheets\\\": [\\n    {\\n      \\\"properties\\\": {}\\n    }\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:00 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_clear_tab_color\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"106\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:45 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"193\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:46 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3337\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:46 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3337\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:46 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA?fields=sheets.properties.tabColorStyle\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:47 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"57\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"sheets\\\": [\\n    {\\n      \\\"properties\\\": {}\\n    }\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"tabColorStyle\\\": {\\\"rgbColor\\\": {\\\"red\\\": 1, \\\"green\\\": 0, \\\"blue\\\": 0.5}}}, \\\"fields\\\": \\\"tabColorStyle\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"168\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:47 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"tabColorStyle\\\": {\\\"rgbColor\\\": null}}, \\\"fields\\\": \\\"tabColorStyle\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"137\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:48 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA?fields=sheets.properties.tabColorStyle\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:48 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"57\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"sheets\\\": [\\n    {\\n      \\\"properties\\\": {}\\n    }\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1YDIqRCAP0IuPICM118VMrxD2RWVBaxgdoV9wlPOQVHA?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:49 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_copy_cut_range.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_copy_cut_range\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"105\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:03 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:04 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:04 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"202\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:05 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:05 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/values/%27Sheet1%27%21A1%3AA2?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"A1\\\"], [\\\"A2\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"28\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:05 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:A2\\\",\\n  \\\"updatedRows\\\": 2,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 2\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A:batchUpdate\",\n                \"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\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"311\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:06 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/values/%27Sheet1%27%21B1%3AB2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:06 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"124\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!B1:B2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"A1\\\"\\n    ],\\n    [\\n      \\\"A2\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"cutPaste\\\": {\\\"source\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 1, \\\"sheetId\\\": 0}, \\\"destination\\\": {\\\"sheetId\\\": 0, \\\"rowIndex\\\": 0, \\\"columnIndex\\\": 2}, \\\"pasteType\\\": \\\"PASTE_NORMAL\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"231\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:06 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/values/%27Sheet1%27%21A1%3AA2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:06 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:A2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/values/%27Sheet1%27%21C1%3AC2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:07 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"124\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!C1:C2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"A1\\\"\\n    ],\\n    [\\n      \\\"A2\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:07 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_copy_cut_range\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"105\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:51 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:51 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:52 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:52 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI/values/%27Sheet1%27%21A1%3AA2?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"A1\\\"], [\\\"A2\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"28\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:52 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:A2\\\",\\n  \\\"updatedRows\\\": 2,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 2\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI:batchUpdate\",\n                \"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\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"311\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:53 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI/values/%27Sheet1%27%21B1%3AB2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:53 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"124\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!B1:B2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"A1\\\"\\n    ],\\n    [\\n      \\\"A2\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"cutPaste\\\": {\\\"source\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 1, \\\"sheetId\\\": 0}, \\\"destination\\\": {\\\"sheetId\\\": 0, \\\"rowIndex\\\": 0, \\\"columnIndex\\\": 2}, \\\"pasteType\\\": \\\"PASTE_NORMAL\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"231\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:54 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI/values/%27Sheet1%27%21A1%3AA2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:54 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:A2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI/values/%27Sheet1%27%21C1%3AC2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:54 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"124\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!C1:C2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"A1\\\"\\n    ],\\n    [\\n      \\\"A2\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1PzwcRYLRU652FSZAfS6Jr8hThVO0mAJJ2HcrjWq_lMI?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:55 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_delete_cols.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_delete_cols\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"102\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:11 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"189\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:11 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3333\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:12 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"199\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:12 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3333\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:12 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27%21A1%3AD6\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:12 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:D6\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"567\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:13 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D6\\\",\\n  \\\"updatedRows\\\": 6,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 24\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27%21A1%3AA?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:13 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"265\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27%21D1%3AD?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:13 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"266\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"deleteDimension\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"COLUMNS\\\", \\\"startIndex\\\": 1, \\\"endIndex\\\": 3}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"118\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:13 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27%21A1%3AA?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:14 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"265\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27%21B1%3AB?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:14 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"266\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:15 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_delete_cols\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"102\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:17:59 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"189\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3333\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3333\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY/values/%27Sheet1%27%21A1%3AD6\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:01 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:D6\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"567\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:01 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D6\\\",\\n  \\\"updatedRows\\\": 6,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 24\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY/values/%27Sheet1%27%21A1%3AA?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:02 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"265\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY/values/%27Sheet1%27%21D1%3AD?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:02 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"266\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"deleteDimension\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"COLUMNS\\\", \\\"startIndex\\\": 1, \\\"endIndex\\\": 3}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"118\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:02 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY/values/%27Sheet1%27%21A1%3AA?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:03 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"265\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY/values/%27Sheet1%27%21B1%3AB?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:03 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"266\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1VJqxNEODZggHxdeqWuGTv8Z-twuPYfxboHKOpQdMvBY?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:04 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_delete_protected_range.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_delete_protected_range\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"113\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 15 Mar 2024 15:59:23 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"content-length\": [\n                        \"200\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 15 Mar 2024 15:59:24 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3344\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 15 Mar 2024 15:59:24 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3344\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 15 Mar 2024 15:59:25 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addProtectedRange\\\": {\\\"protectedRange\\\": {\\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 2, \\\"sheetId\\\": 0}, \\\"description\\\": null, \\\"warningOnly\\\": false, \\\"requestingUserCanEdit\\\": false, \\\"editors\\\": {\\\"users\\\": [], \\\"groups\\\": []}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"281\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 15 Mar 2024 15:59:25 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"447\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 15 Mar 2024 15:59:25 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3794\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"deleteProtectedRange\\\": {\\\"protectedRangeId\\\": 2028942746}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"74\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 15 Mar 2024 15:59:25 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 15 Mar 2024 15:59:26 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"content-length\": [\n                        \"3344\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1SJ0vcFodHxZBuOHPaBUke9uXAgMgVBL873OHLPF_1xE?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 15 Mar 2024 15:59:26 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_delete_row.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_delete_row\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"101\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:18 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"188\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:18 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:19 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"198\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:19 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:19 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"225\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:20 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"266\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"234\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:20 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"298\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"234\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:20 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"298\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"234\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:21 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"298\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"234\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:21 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"298\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27%21A1%3A1\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:21 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"359\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27%21A3%3A3\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:22 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"368\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"deleteDimension\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"ROWS\\\", \\\"startIndex\\\": 1, \\\"endIndex\\\": 2}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"115\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:22 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27%21A1%3A1\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:22 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"359\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27%21A2%3A2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:22 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"368\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:23 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_delete_row\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"101\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:06 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"188\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:07 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:07 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:07 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"225\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:08 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"266\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"234\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:08 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"298\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"234\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:08 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"298\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"234\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:09 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"298\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"234\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:09 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"298\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY/values/%27Sheet1%27%21A1%3A1\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:10 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"359\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY/values/%27Sheet1%27%21A3%3A3\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:10 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"368\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"deleteDimension\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"ROWS\\\", \\\"startIndex\\\": 1, \\\"endIndex\\\": 2}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"115\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:10 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY/values/%27Sheet1%27%21A1%3A1\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:11 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"359\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY/values/%27Sheet1%27%21A2%3A2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:11 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"368\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1JNulIdmOZk2kGdZjtZeO2RqTniUwFlzC-0Qwx540FwY?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:12 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_find.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_find\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"95\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:26 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"182\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\\\",\\n  \\\"name\\\": \\\"Test WorksheetTest test_find\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:27 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3326\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:27 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:27 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3326\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:28 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27%21J2?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_find 1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"29\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:28 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!J2\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27%21K2?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_find 1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"29\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:28 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!K2\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:29 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"231\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27%21K2?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_find 1o_Otest_find 2\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"43\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:29 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!K2\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:29 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"245\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:29 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"245\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27%21J2?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"camelcase\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"27\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:30 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!J2\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27%21K2?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"CamelCase\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"27\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:30 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!K2\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:30 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"227\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:31 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_find\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"95\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:16 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"182\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:16 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3326\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:17 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3326\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:17 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ/values/%27Sheet1%27%21J2?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_find 1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"29\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:18 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!J2\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ/values/%27Sheet1%27%21K2?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_find 1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"29\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:18 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!K2\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:19 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"231\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ/values/%27Sheet1%27%21K2?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_find 1o_Otest_find 2\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"43\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:19 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!K2\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:19 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"245\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:20 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"245\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ/values/%27Sheet1%27%21J2?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"camelcase\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"27\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:20 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!J2\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ/values/%27Sheet1%27%21K2?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"CamelCase\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"27\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:20 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!K2\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:21 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"227\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1bZk0D99Ob_pRWRYGiYXbSkC76UIH06c9aqq-jA262wQ?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:21 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_findall.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_findall\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"98\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:34 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"185\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\\\",\\n  \\\"name\\\": \\\"Test WorksheetTest test_findall\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:34 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3329\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:35 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"195\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:35 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3329\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:35 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27%21A1%3AA10\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:35 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"59\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:A10\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27%21A1%3AA10?valueInputOption=RAW\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"212\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:36 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"171\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:A10\\\",\\n  \\\"updatedRows\\\": 10,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 10\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:36 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"439\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27%21A1%3AA10\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:36 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"437\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27%21A1%3AA10?valueInputOption=RAW\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"382\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:36 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"171\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:A10\\\",\\n  \\\"updatedRows\\\": 10,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 10\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:37 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"609\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:37 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_findall\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"98\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:25 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"185\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:26 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3329\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:26 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3329\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:27 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU/values/%27Sheet1%27%21A1%3AA10\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:27 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"59\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:A10\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU/values/%27Sheet1%27%21A1%3AA10?valueInputOption=RAW\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"212\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:27 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"171\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:A10\\\",\\n  \\\"updatedRows\\\": 10,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 10\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:28 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"439\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU/values/%27Sheet1%27%21A1%3AA10\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:28 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"437\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU/values/%27Sheet1%27%21A1%3AA10?valueInputOption=RAW\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"382\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:29 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"171\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:A10\\\",\\n  \\\"updatedRows\\\": 10,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 10\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:29 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"609\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1YgUtE0wUq6OVDfUsuFIjw8yuCMamEiLrz_b_iFECkDU?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:30 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_format.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_format\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"97\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:40 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"184\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:41 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:41 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"194\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:41 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:42 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c:batchUpdate\",\n                \"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)\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"417\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:42 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c?includeGridData=False&ranges=Sheet1%21A2&fields=sheets.data.rowData.values.userEnteredFormat\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:42 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"1140\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:43 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_format\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"97\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:32 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"184\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1tPkxIIuK5TUvurJ06KES4-ts1bDHz8cM1WXl-jClBjU?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:32 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1tPkxIIuK5TUvurJ06KES4-ts1bDHz8cM1WXl-jClBjU?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:33 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1tPkxIIuK5TUvurJ06KES4-ts1bDHz8cM1WXl-jClBjU/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:33 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1tPkxIIuK5TUvurJ06KES4-ts1bDHz8cM1WXl-jClBjU\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1tPkxIIuK5TUvurJ06KES4-ts1bDHz8cM1WXl-jClBjU:batchUpdate\",\n                \"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)\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"417\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:34 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1tPkxIIuK5TUvurJ06KES4-ts1bDHz8cM1WXl-jClBjU\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1tPkxIIuK5TUvurJ06KES4-ts1bDHz8cM1WXl-jClBjU?includeGridData=False&ranges=Sheet1%21A2&fields=sheets.data.rowData.values.userEnteredFormat\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:34 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"1140\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1tPkxIIuK5TUvurJ06KES4-ts1bDHz8cM1WXl-jClBjU?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:35 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_freeze.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_freeze\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"97\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:47 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"184\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:48 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:48 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"194\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:48 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:49 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"frozenRowCount\\\": 2}}, \\\"fields\\\": \\\"gridProperties/frozenRowCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"157\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:49 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:49 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3359\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"frozenColumnCount\\\": 1}}, \\\"fields\\\": \\\"gridProperties/frozenColumnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"163\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:49 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:50 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3393\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"frozenRowCount\\\": 0, \\\"frozenColumnCount\\\": 0}}, \\\"fields\\\": \\\"gridProperties/frozenRowCount,gridProperties/frozenColumnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"214\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:50 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:50 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:42:51 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_freeze\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"97\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:37 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"184\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg\\\",\\n  \\\"name\\\": \\\"Test WorksheetTest test_freeze\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:37 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:38 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:38 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"frozenRowCount\\\": 2}}, \\\"fields\\\": \\\"gridProperties/frozenRowCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"157\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:38 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:39 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3359\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"frozenColumnCount\\\": 1}}, \\\"fields\\\": \\\"gridProperties/frozenColumnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"163\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:39 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:40 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3393\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"frozenRowCount\\\": 0, \\\"frozenColumnCount\\\": 0}}, \\\"fields\\\": \\\"gridProperties/frozenRowCount,gridProperties/frozenColumnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"214\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:40 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:40 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1e6Khj3GwW2dTwSOh7AveaXtzmTKnxnmNEuwEz9BLtHg?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:18:41 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_all_records.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_all_records\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"106\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:08 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"content-length\": [\n                        \"193\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:08 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3337\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:09 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3337\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:09 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:09 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"A1\\\", \\\"B1\\\", \\\"\\\", \\\"D1\\\"], [1, \\\"b2\\\", 1.45, \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"A4\\\", 0.4, \\\"\\\", 4]], \\\"majorDimension\\\": null}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"119\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:10 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:10 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"249\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:10 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"249\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:10 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"249\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:11 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"249\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1M2mlIn8G_4hZYnBE1oh10QU9qUFp9KhiIxBT9oTCKOI?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:11 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_all_records_different_header.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_all_records_different_header\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"123\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:13 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"content-length\": [\n                        \"210\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:14 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3354\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:14 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3354\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:14 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 6, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:14 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"A1\\\", \\\"B1\\\", \\\"\\\", \\\"D1\\\"], [1, \\\"b2\\\", 1.45, \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"A4\\\", 0.4, \\\"\\\", 4]], \\\"majorDimension\\\": null}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"155\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:15 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D6\\\",\\n  \\\"updatedRows\\\": 6,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 24\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:15 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"265\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:15 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"265\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:16 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"265\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:16 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"265\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1Lego-kcxvbnP-fvfUwb0_8npW23ZUYQsfGCPQJypr-E?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:16 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_all_records_duplicate_keys.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_all_records_duplicate_keys\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"121\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:18 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"content-length\": [\n                        \"208\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:19 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3352\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:19 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3352\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:19 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:20 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"A1\\\", \\\"faff\\\", \\\"C3\\\", \\\"faff\\\"], [1, \\\"b2\\\", 1.45, \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"A4\\\", 0.4, \\\"\\\", 4]], \\\"majorDimension\\\": null}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"125\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:20 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:20 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"255\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:20 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"255\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:21 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"255\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:21 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"255\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1JZimm--KJIW3i9vtdNDdma88poPWX6GFIFNyyrvjc5Y?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:21 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_all_records_numericise_unformatted.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_all_records_numericise_unformatted\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"129\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:24 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"content-length\": [\n                        \"216\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:25 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3360\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:25 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3360\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:25 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 2, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:26 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ/values/%27Sheet1%27%21A1%3AD2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:26 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:D2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ/values/%27Sheet1%27%21A1%3AD2?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"A\\\", \\\"\\\", \\\"C\\\", \\\"3_1_0\\\"], [\\\"=3/2\\\", 0.12, \\\"\\\", \\\"3_2_1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"66\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:26 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D2\\\",\\n  \\\"updatedRows\\\": 2,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 8\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:27 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"195\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1mt_zJLsgMLDIjwdv6qy7hSiWm2nH9UwBWt4nQiSB4SQ?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:27 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_all_records_pad_more_than_one_key.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_all_records_pad_more_than_one_key\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"128\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:31 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"content-length\": [\n                        \"215\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:31 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3359\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:32 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3359\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:32 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 2, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:32 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I/values/%27Sheet1%27%21A1%3AD2?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"A1\\\", \\\"B1\\\"], [1, 2, 3, 4]], \\\"majorDimension\\\": null}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"64\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:33 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D2\\\",\\n  \\\"updatedRows\\\": 2,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 6\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:33 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1n1SRArUGgc2zoJw2hOIjuVNhvFbobJWlK4xSwroNh2I?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:33 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_all_records_pad_one_key.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_all_records_pad_one_key\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"118\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:37 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"content-length\": [\n                        \"205\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:38 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3349\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:38 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3349\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:38 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 2, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:39 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY/values/%27Sheet1%27%21A1%3AD2?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"A1\\\", \\\"B1\\\", \\\"C1\\\"], [1, 2, 3, 4]], \\\"majorDimension\\\": null}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"70\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:39 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D2\\\",\\n  \\\"updatedRows\\\": 2,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 7\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:39 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"180\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1M9jennO8LD4Utius2v9CVcA9TIxJNYk5Js7P772lYgY?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:40 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_all_records_pad_values.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_all_records_pad_values\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"117\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:43 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"content-length\": [\n                        \"204\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:43 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3348\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:43 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3348\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:44 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 2, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:44 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw/values/%27Sheet1%27%21A1%3AC2?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"A1\\\", \\\"B1\\\", \\\"C1\\\"], [1, 2]], \\\"majorDimension\\\": null}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"64\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:44 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:C2\\\",\\n  \\\"updatedRows\\\": 2,\\n  \\\"updatedColumns\\\": 3,\\n  \\\"updatedCells\\\": 5\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:44 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"158\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1gYHgBIsmMexkhnZYsYBsgB-zuDAMXC0DJDYCHZwglyw?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:45 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_all_records_value_render_options.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_all_records_value_render_options\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"127\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:48 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"content-length\": [\n                        \"214\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:48 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3358\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:48 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3358\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:49 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 2, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:49 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro/values/%27Sheet1%27%21A1%3AD2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:49 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:D2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro/values/%27Sheet1%27%21A1%3AD2?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"=4/2\\\", \\\"2020-01-01\\\", \\\"string\\\", 53], [\\\"=3/2\\\", 0.12, \\\"1999-01-02\\\", \\\"\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"84\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:50 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D2\\\",\\n  \\\"updatedRows\\\": 2,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 8\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:50 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"206\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:50 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"184\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro/values/%27Sheet1%27?valueRenderOption=FORMULA\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:51 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1f7zKlUAxEFe6q2jbUe3UNQDbMZyt6EQvoqjs_dxK6Ro?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:51 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_all_records_with_all_values_blank.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_all_records_with_all_values_blank\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"128\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:55 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"content-length\": [\n                        \"215\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:55 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3359\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:56 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3359\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:56 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:56 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"a\\\", \\\"b\\\", \\\"c\\\", \\\"d\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"]], \\\"majorDimension\\\": null}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"112\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:57 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:57 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"132\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"a\\\",\\n      \\\"b\\\",\\n      \\\"c\\\",\\n      \\\"d\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1ZW-KCcT5Y0qCm02ft1RwnQqfG8w7PoDy8Mb4ifPfAJk?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:39:58 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_all_records_with_blank_final_headers.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_all_records_with_blank_final_headers\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"131\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:02 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"content-length\": [\n                        \"218\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:02 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3362\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:02 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3362\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:03 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:03 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"A1\\\", \\\"faff\\\", \\\"\\\", \\\"\\\"], [1, \\\"b2\\\", 1.45, \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"A4\\\", 0.4, \\\"\\\", 4]], \\\"majorDimension\\\": null}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"119\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:03 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:04 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"229\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:04 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"229\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1DOeeLJTGpoqn-zcX22dL7_uHLSm_asbJPu43c5D1Ni4?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:05 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_all_records_with_keys_blank.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_all_records_with_keys_blank\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"122\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:08 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"content-length\": [\n                        \"209\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:09 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3353\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:09 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3353\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:09 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:10 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U/values/%27Sheet1%27%21A1%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:10 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"c\\\", \\\"d\\\", \\\"e\\\", \\\"f\\\"], [\\\"g\\\", \\\"h\\\", \\\"i\\\", \\\"j\\\"], [\\\"k\\\", \\\"l\\\", \\\"m\\\", \\\"\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"95\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:10 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:11 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"241\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:11 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"241\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1uLSQE8WPTrqhEJiD_NXXiCKG-2fRiOAe02mYLRPts8U?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:12 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_all_records_with_some_values_blank.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_all_records_with_some_values_blank\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"129\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:14 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"content-length\": [\n                        \"216\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:14 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3360\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:14 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3360\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:15 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 6, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:15 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"a\\\", \\\"b\\\", \\\"c\\\", \\\"d\\\"], [\\\"x\\\", \\\"y\\\", \\\"z\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"]], \\\"majorDimension\\\": null}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"151\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:16 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D6\\\",\\n  \\\"updatedRows\\\": 6,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 24\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:16 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"177\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1YT5PoW7SJjk6KxQLIWe1jBpduVRF5Sy3Y0LPU0Lfr4k?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Date\": [\n                        \"Fri, 29 Dec 2023 18:40:16 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_all_values.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_all_values\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"105\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:38 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:39 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:39 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"202\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:40 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:40 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:40 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27%21A1%3AD1\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:40 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:D1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27%21A2%3AD2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:41 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A2:D2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27%21A3%3AD3\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:41 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A3:D3\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27%21A4%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:41 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A4:D4\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"A1\\\", \\\"B1\\\", \\\"\\\", \\\"D1\\\"], [\\\"\\\", \\\"b2\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"A4\\\", \\\"B4\\\", \\\"\\\", \\\"D4\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"98\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:41 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:41 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"234\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:42 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_all_values\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"105\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:28 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:29 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:29 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:29 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:30 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A/values/%27Sheet1%27%21A1%3AD1\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:30 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:D1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A/values/%27Sheet1%27%21A2%3AD2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:31 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A2:D2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A/values/%27Sheet1%27%21A3%3AD3\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:31 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A3:D3\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A/values/%27Sheet1%27%21A4%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:31 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A4:D4\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"A1\\\", \\\"B1\\\", \\\"\\\", \\\"D1\\\"], [\\\"\\\", \\\"b2\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"A4\\\", \\\"B4\\\", \\\"\\\", \\\"D4\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"98\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:32 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:32 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"234\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1-YEdVMX4UZOvM6aH7L09FJ8Q8nSG418aW6veSKdA-0A?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:33 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_all_values_date_time_render_options.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_all_values_date_time_render_options\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"130\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:45 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"217\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:46 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3361\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:46 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"227\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:46 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3361\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:47 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 2, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:47 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27%21A1%3AD2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:47 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:D2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27%21A1%3AD2?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"=4/2\\\", \\\"2020-01-01\\\", \\\"string\\\", 53], [\\\"=3/2\\\", 0.12, \\\"1999-01-02\\\", \\\"\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"84\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:48 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D2\\\",\\n  \\\"updatedRows\\\": 2,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 8\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE&dateTimeRenderOption=SERIAL_NUMBER\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:48 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"184\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE&dateTimeRenderOption=FORMATTED_STRING\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:48 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"198\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27?valueRenderOption=FORMATTED_VALUE&dateTimeRenderOption=SERIAL_NUMBER\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:48 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"206\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27?valueRenderOption=FORMATTED_VALUE&dateTimeRenderOption=FORMATTED_STRING\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:48 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"206\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:49 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_all_values_date_time_render_options\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"130\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:36 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"217\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:37 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3361\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:37 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3361\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:37 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 2, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:38 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U/values/%27Sheet1%27%21A1%3AD2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:38 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:D2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U/values/%27Sheet1%27%21A1%3AD2?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"=4/2\\\", \\\"2020-01-01\\\", \\\"string\\\", 53], [\\\"=3/2\\\", 0.12, \\\"1999-01-02\\\", \\\"\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"84\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:39 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D2\\\",\\n  \\\"updatedRows\\\": 2,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 8\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE&dateTimeRenderOption=SERIAL_NUMBER\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:39 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"184\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE&dateTimeRenderOption=FORMATTED_STRING\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:39 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"198\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U/values/%27Sheet1%27?valueRenderOption=FORMATTED_VALUE&dateTimeRenderOption=SERIAL_NUMBER\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:40 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"206\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U/values/%27Sheet1%27?valueRenderOption=FORMATTED_VALUE&dateTimeRenderOption=FORMATTED_STRING\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:40 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"206\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1f9voFh4f9nwhghClKA8B98Q8WUqIhrW1yG_9lg6HS1U?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:41 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_all_values_title_is_a1_notation.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_all_values_title_is_a1_notation\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"126\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:52 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"213\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:53 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3357\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:53 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"223\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:53 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3357\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:54 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:54 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"title\\\": \\\"D3\\\"}, \\\"fields\\\": \\\"title\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"107\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:54 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27D3%27%21A1%3AD1\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:55 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"56\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"'D3'!A1:D1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27D3%27%21A2%3AD2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:55 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"56\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"'D3'!A2:D2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27D3%27%21A3%3AD3\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:55 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"56\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"'D3'!A3:D3\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27D3%27%21A4%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:55 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"56\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"'D3'!A4:D4\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27D3%27%21A1%3AD4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"A1\\\", \\\"B1\\\", \\\"\\\", \\\"D1\\\"], [\\\"\\\", \\\"b2\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"A4\\\", \\\"B4\\\", \\\"\\\", \\\"d4\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"98\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:56 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"167\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\\\",\\n  \\\"updatedRange\\\": \\\"'D3'!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27D3%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:56 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"232\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:43:57 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_all_values_title_is_a1_notation\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"126\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:44 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"213\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:45 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3357\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:45 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3357\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:46 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:46 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"title\\\": \\\"D3\\\"}, \\\"fields\\\": \\\"title\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"107\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:46 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8/values/%27D3%27%21A1%3AD1\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:47 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"56\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"'D3'!A1:D1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8/values/%27D3%27%21A2%3AD2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:47 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"56\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"'D3'!A2:D2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8/values/%27D3%27%21A3%3AD3\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:47 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"56\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"'D3'!A3:D3\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8/values/%27D3%27%21A4%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:48 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"56\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"'D3'!A4:D4\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8/values/%27D3%27%21A1%3AD4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"A1\\\", \\\"B1\\\", \\\"\\\", \\\"D1\\\"], [\\\"\\\", \\\"b2\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"A4\\\", \\\"B4\\\", \\\"\\\", \\\"d4\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"98\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:48 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"167\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8\\\",\\n  \\\"updatedRange\\\": \\\"'D3'!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8/values/%27D3%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:48 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"232\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1PtN0XS2EB9uhmSTI7Suu2fXXaURUed8gwm-ZqwfDKG8?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:49 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_and_get_values_have_same_signature.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_and_get_values_have_same_signature\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"129\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 11:31:46 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"216\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nnfK-ZWP-W6T0VjNnqJ324q4n31jOPXe3dOeSJIm7Ho?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 11:31:46 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"3360\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nnfK-ZWP-W6T0VjNnqJ324q4n31jOPXe3dOeSJIm7Ho?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 11:31:47 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"3360\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nnfK-ZWP-W6T0VjNnqJ324q4n31jOPXe3dOeSJIm7Ho/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 11:31:48 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1nnfK-ZWP-W6T0VjNnqJ324q4n31jOPXe3dOeSJIm7Ho\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1nnfK-ZWP-W6T0VjNnqJ324q4n31jOPXe3dOeSJIm7Ho?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 11:31:49 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_merge_cells_and_unmerge_cells.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_merge_cells_and_unmerge_cells\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"Content-Length\": [\n                        \"124\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 30 Dec 2023 18:22:39 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"211\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 30 Dec 2023 18:22:39 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"3355\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 30 Dec 2023 18:22:40 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"3355\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 30 Dec 2023 18:22:40 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 30 Dec 2023 18:22:41 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"1\\\", \\\"\\\", \\\"2\\\", \\\"3\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"4\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"5\\\", \\\"\\\", \\\"\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"Content-Length\": [\n                        \"89\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 30 Dec 2023 18:22:41 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"mergeCells\\\": {\\\"mergeType\\\": \\\"MERGE_ALL\\\", \\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 2, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"Content-Length\": [\n                        \"165\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 30 Dec 2023 18:22:42 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"mergeCells\\\": {\\\"mergeType\\\": \\\"MERGE_COLUMNS\\\", \\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 2, \\\"endColumnIndex\\\": 4, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"Content-Length\": [\n                        \"169\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 30 Dec 2023 18:22:42 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"mergeCells\\\": {\\\"mergeType\\\": \\\"MERGE_ROWS\\\", \\\"range\\\": {\\\"startRowIndex\\\": 2, \\\"endRowIndex\\\": 4, \\\"startColumnIndex\\\": 1, \\\"endColumnIndex\\\": 3, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"Content-Length\": [\n                        \"166\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 30 Dec 2023 18:22:42 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs/values/%27Sheet1%27%21A1%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 30 Dec 2023 18:22:43 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"205\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 30 Dec 2023 18:22:43 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"4087\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"unmergeCells\\\": {\\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 4, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 4, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"Content-Length\": [\n                        \"141\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 30 Dec 2023 18:22:44 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs/values/%27Sheet1%27%21A1%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 30 Dec 2023 18:22:44 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"205\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 30 Dec 2023 18:22:44 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"3351\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/16u2Rgrky_mSTXlMiEplZbu40DNyTHjnNEEDSGFBlpWs?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 30 Dec 2023 18:22:45 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_notes.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_notes\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"100\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:28:43 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"187\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:28:43 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"3331\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:28:44 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"3331\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:28:45 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:28:45 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"3331\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI?fields=sheets.data.rowData.values.note&ranges=%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:28:46 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"69\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"sheets\\\": [\\n    {\\n      \\\"data\\\": [\\n        {}\\n      ]\\n    }\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI:batchUpdate\",\n                \"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\\\"}]}]}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"778\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:28:47 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"121\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI\\\",\\n  \\\"replies\\\": [\\n    {},\\n    {},\\n    {},\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI?fields=sheets.data.rowData.values.note&ranges=%27Sheet1%27%21A2%3AC3\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:28:47 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"514\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI?fields=sheets.data.rowData.values.note&ranges=%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:28:48 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"662\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1ixIGCQezexeSZMbzt_A3kYfYLMC9UI4mmFmlw-G_9NI?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:28:48 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_notes_2nd_sheet.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_notes_2nd_sheet\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"110\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:27:44 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"197\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:27:45 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:27:46 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:27:47 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addSheet\\\": {\\\"properties\\\": {\\\"title\\\": \\\"worksheet 2\\\", \\\"sheetType\\\": \\\"GRID\\\", \\\"gridProperties\\\": {\\\"rowCount\\\": 3, \\\"columnCount\\\": 3}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"144\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:27:48 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"381\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA?fields=sheets.data.rowData.values.note&ranges=%27worksheet+2%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:27:48 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"69\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"sheets\\\": [\\n    {\\n      \\\"data\\\": [\\n        {}\\n      ]\\n    }\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA:batchUpdate\",\n                \"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\\\"}]}]}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"418\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:27:49 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"105\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA\\\",\\n  \\\"replies\\\": [\\n    {},\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA?fields=sheets.data.rowData.values.note&ranges=%27worksheet+2%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:27:50 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"444\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA?fields=sheets.data.rowData.values.note&ranges=%27worksheet+2%27%21A2%3AC3\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:27:50 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"294\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1EAqgeQrhtltuzA3qYPTQiiz23g2re7Jr4rnVOCUDybA?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:27:51 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_notes_2nd_sheet\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"110\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:28:50 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"197\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:28:54 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:28:55 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:28:56 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addSheet\\\": {\\\"properties\\\": {\\\"title\\\": \\\"worksheet 2\\\", \\\"sheetType\\\": \\\"GRID\\\", \\\"gridProperties\\\": {\\\"rowCount\\\": 3, \\\"columnCount\\\": 3}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"144\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:28:56 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"382\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew?fields=sheets.data.rowData.values.note&ranges=%27worksheet+2%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:28:57 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"69\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"sheets\\\": [\\n    {\\n      \\\"data\\\": [\\n        {}\\n      ]\\n    }\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew:batchUpdate\",\n                \"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\\\"}]}]}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"420\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:28:58 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"105\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew\\\",\\n  \\\"replies\\\": [\\n    {},\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew?fields=sheets.data.rowData.values.note&ranges=%27worksheet+2%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:28:59 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"444\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew?fields=sheets.data.rowData.values.note&ranges=%27worksheet+2%27%21A2%3AC3\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:28:59 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"294\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1ZMPsJJzU7mYbZlWDkedfckOibDOJpLP3W_v_YterZew?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.32.3\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 07 Oct 2024 19:29:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_returns_ValueRange_with_metadata.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_returns_ValueRange_with_metadata\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"127\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 15:49:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"content-length\": [\n                        \"214\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 15:49:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3358\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 15:49:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"content-length\": [\n                        \"224\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 15:49:01 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3358\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 15:49:01 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 15:49:02 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"1\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"2\\\"]], \\\"majorDimension\\\": null}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"110\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 15:49:02 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g/values/%27Sheet1%27%21A1%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 15:49:03 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1vUbQ_5yY7t8hJpCwPwy9D7l2kGG0N-mF5v9CWU80S9g?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 15:49:03 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_returns_ValueRange_with_metadata\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"127\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 15:49:08 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"content-length\": [\n                        \"214\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 15:49:09 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3358\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 15:49:09 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"content-length\": [\n                        \"224\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 15:49:09 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3358\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 15:49:10 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 15:49:10 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"1\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"2\\\"]], \\\"majorDimension\\\": null}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"110\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 15:49:10 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI/values/%27Sheet1%27%21A1%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 15:49:11 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1kYQKA0cKhBeN7IHfoCgEET_emRTiKDQE64U2_pwvvlI?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 15:49:11 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_values_and_combine_merged_cells.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_values_and_combine_merged_cells\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"126\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:32:02 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"213\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:32:02 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3357\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:32:03 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3357\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:32:04 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:32:04 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"1\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"title\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"2\\\", \\\"\\\"], [\\\"num\\\", \\\"val\\\", \\\"\\\", \\\"0\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"98\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:32:04 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"mergeCells\\\": {\\\"mergeType\\\": \\\"MERGE_ALL\\\", \\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 2, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"165\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:32:05 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"mergeCells\\\": {\\\"mergeType\\\": \\\"MERGE_ALL\\\", \\\"range\\\": {\\\"startRowIndex\\\": 1, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 2, \\\"endColumnIndex\\\": 4, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"165\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:32:06 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"mergeCells\\\": {\\\"mergeType\\\": \\\"MERGE_ALL\\\", \\\"range\\\": {\\\"startRowIndex\\\": 2, \\\"endRowIndex\\\": 4, \\\"startColumnIndex\\\": 2, \\\"endColumnIndex\\\": 3, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"165\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:32:07 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:32:07 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"248\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:32:08 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"248\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:32:08 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3805\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw/values/%27Sheet1%27%21A1%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:32:08 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"248\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:32:08 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3805\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/187zm3OWka7Zlt8GGzYJLMeIxmzlCWk_H_KbUmcKXTyw?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:32:09 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_values_and_maintain_size.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_values_and_maintain_size\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"119\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 28 Oct 2023 11:31:13 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"content-length\": [\n                        \"206\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 28 Oct 2023 11:31:14 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"content-length\": [\n                        \"3350\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 28 Oct 2023 11:31:14 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"content-length\": [\n                        \"3350\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 28 Oct 2023 11:31:14 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 5, \\\"columnCount\\\": 5}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 28 Oct 2023 11:31:15 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8/values/%27Sheet1%27%21A1%3AE5?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"1\\\", \\\"2\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"3\\\", \\\"4\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"5\\\", \\\"6\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"]], \\\"majorDimension\\\": null}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"152\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 28 Oct 2023 11:31:15 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:E5\\\",\\n  \\\"updatedRows\\\": 5,\\n  \\\"updatedColumns\\\": 5,\\n  \\\"updatedCells\\\": 25\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8/values/%27Sheet1%27%21A1%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 28 Oct 2023 11:31:15 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"content-length\": [\n                        \"178\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1Tn0-7iJtUVsziRcJ_CwZrokLZNNBsGb0rukA4vKtOW8?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 28 Oct 2023 11:31:16 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_values_can_emulate_get_with_kwargs.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_values_can_emulate_get_with_kwargs\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"129\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 31 Oct 2023 11:18:54 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"216\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 31 Oct 2023 11:18:54 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"3360\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 31 Oct 2023 11:18:55 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"3360\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 31 Oct 2023 11:18:55 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 31 Oct 2023 11:18:56 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"1\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"2\\\"]], \\\"majorDimension\\\": null}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"110\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 31 Oct 2023 11:18:56 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY/values/%27Sheet1%27%21A1%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 31 Oct 2023 11:18:56 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY/values/%27Sheet1%27%21A1%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 31 Oct 2023 11:18:57 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1d-G9f4lafXyDQYjHVQMRLNqwFJScbmfP9YScHC8sglY?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 31 Oct 2023 11:18:57 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_values_merge_cells_from_centre_of_sheet.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_values_merge_cells_from_centre_of_sheet\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"134\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 25 Oct 2023 12:40:10 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"content-length\": [\n                        \"221\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 25 Oct 2023 12:40:11 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"3365\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 25 Oct 2023 12:40:11 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"3365\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 25 Oct 2023 12:40:12 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 3}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 25 Oct 2023 12:40:12 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw/values/%27Sheet1%27%21A1%3AC4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"1\\\", \\\"2\\\", \\\"4\\\"], [\\\"down\\\", \\\"up\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"2\\\"], [\\\"num\\\", \\\"val\\\", \\\"\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"84\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 25 Oct 2023 12:40:13 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:C4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 3,\\n  \\\"updatedCells\\\": 12\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"mergeCells\\\": {\\\"mergeType\\\": \\\"MERGE_ALL\\\", \\\"range\\\": {\\\"startRowIndex\\\": 1, \\\"endRowIndex\\\": 3, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 1, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"165\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 25 Oct 2023 12:40:13 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"mergeCells\\\": {\\\"mergeType\\\": \\\"MERGE_ALL\\\", \\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 2, \\\"endColumnIndex\\\": 3, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"165\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 25 Oct 2023 12:40:13 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw/values/%27Sheet1%27%21B1%3AC3\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 25 Oct 2023 12:40:14 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"167\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 25 Oct 2023 12:40:14 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"3671\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1vRAOH4aY8X9JbduNdR4dRcCcTmm_2_k0PX1zZDYpsWw?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 25 Oct 2023 12:40:15 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_values_merge_cells_outside_of_range.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_values_merge_cells_outside_of_range\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"130\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:25:30 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"217\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:25:31 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"3361\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:25:31 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"3361\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:25:31 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:25:32 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"1\\\", \\\"2\\\", \\\"4\\\", \\\"\\\"], [\\\"down\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"2\\\", \\\"\\\"], [\\\"num\\\", \\\"val\\\", \\\"\\\", \\\"0\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"99\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:25:32 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"mergeCells\\\": {\\\"mergeType\\\": \\\"MERGE_ALL\\\", \\\"range\\\": {\\\"startRowIndex\\\": 1, \\\"endRowIndex\\\": 3, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 1, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"165\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:25:32 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"mergeCells\\\": {\\\"mergeType\\\": \\\"MERGE_ALL\\\", \\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 2, \\\"endColumnIndex\\\": 4, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"165\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:25:32 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo/values/%27Sheet1%27%21A1%3AB2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:25:33 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"136\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:B2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"1\\\",\\n      \\\"2\\\"\\n    ],\\n    [\\n      \\\"down\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo/values/%27Sheet1%27%21A1%3AB2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:25:33 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"136\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:B2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"1\\\",\\n      \\\"2\\\"\\n    ],\\n    [\\n      \\\"down\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:25:33 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"3667\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1TyQocv7ShqlL5dKLBzYMRqFFKuD7TRIOALilFnyT4Fo?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:25:34 GMT\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_values_merge_cells_outside_of_range\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"130\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:27:16 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"217\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:27:16 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"3361\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:27:16 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"3361\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:27:17 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:27:18 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"1\\\", \\\"2\\\", \\\"4\\\", \\\"\\\"], [\\\"down\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"2\\\", \\\"\\\"], [\\\"num\\\", \\\"val\\\", \\\"\\\", \\\"0\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"99\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:27:18 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"mergeCells\\\": {\\\"mergeType\\\": \\\"MERGE_ALL\\\", \\\"range\\\": {\\\"startRowIndex\\\": 1, \\\"endRowIndex\\\": 3, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 1, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"165\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:27:18 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"mergeCells\\\": {\\\"mergeType\\\": \\\"MERGE_ALL\\\", \\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 2, \\\"endColumnIndex\\\": 4, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"165\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:27:19 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc/values/%27Sheet1%27%21A1%3AB2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:27:19 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"136\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:B2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"1\\\",\\n      \\\"2\\\"\\n    ],\\n    [\\n      \\\"down\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:27:19 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"3667\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1IEwWuA9YGxyZasq3xB1Rplm99LwOvpzhURT_F7gWKcc?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:27:20 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_values_merge_cells_outside_of_range\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"130\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:34:16 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"content-length\": [\n                        \"217\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:34:17 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3361\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:34:17 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3361\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:34:18 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:34:18 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"1\\\", \\\"2\\\", \\\"4\\\", \\\"\\\"], [\\\"down\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"2\\\", \\\"\\\"], [\\\"num\\\", \\\"val\\\", \\\"\\\", \\\"0\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"99\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:34:18 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"mergeCells\\\": {\\\"mergeType\\\": \\\"MERGE_ALL\\\", \\\"range\\\": {\\\"startRowIndex\\\": 1, \\\"endRowIndex\\\": 3, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 1, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"165\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:34:19 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"mergeCells\\\": {\\\"mergeType\\\": \\\"MERGE_ALL\\\", \\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 2, \\\"endColumnIndex\\\": 4, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"165\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:34:19 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg/values/%27Sheet1%27%21A1%3AB2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:34:19 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"136\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:B2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"1\\\",\\n      \\\"2\\\"\\n    ],\\n    [\\n      \\\"down\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:34:19 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3667\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1_bJU8BStDddbIKf1GjveQ-COi32ecmITDljAAJUlxhg?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:34:20 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_values_merge_cells_outside_of_range\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"130\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:39:55 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"content-length\": [\n                        \"217\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:39:55 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3361\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:39:56 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3361\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:39:56 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:39:56 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"1\\\", \\\"2\\\", \\\"4\\\", \\\"\\\"], [\\\"down\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"2\\\", \\\"\\\"], [\\\"num\\\", \\\"val\\\", \\\"\\\", \\\"0\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"99\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:39:57 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"mergeCells\\\": {\\\"mergeType\\\": \\\"MERGE_ALL\\\", \\\"range\\\": {\\\"startRowIndex\\\": 1, \\\"endRowIndex\\\": 3, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 1, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"165\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:39:57 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"mergeCells\\\": {\\\"mergeType\\\": \\\"MERGE_ALL\\\", \\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 2, \\\"endColumnIndex\\\": 4, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"165\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:39:57 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI/values/%27Sheet1%27%21A1%3AB2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:39:57 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"136\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:B2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"1\\\",\\n      \\\"2\\\"\\n    ],\\n    [\\n      \\\"down\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:39:58 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3667\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1BWd_SSNwK2GOTx-aR57RXWo7_M5WyZDdzLRh0dpZmLI?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Tue, 12 Sep 2023 13:39:58 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_values_merge_cells_outside_of_range\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"130\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 10:48:19 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"217\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/17PEpS7qUDVuxfdDihIcG8d7fItwRZjKLnFZS283UBys?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 10:48:19 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"3361\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/17PEpS7qUDVuxfdDihIcG8d7fItwRZjKLnFZS283UBys?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 10:48:20 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"3361\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/17PEpS7qUDVuxfdDihIcG8d7fItwRZjKLnFZS283UBys/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 10:48:20 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"17PEpS7qUDVuxfdDihIcG8d7fItwRZjKLnFZS283UBys\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/17PEpS7qUDVuxfdDihIcG8d7fItwRZjKLnFZS283UBys:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 10:48:21 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"17PEpS7qUDVuxfdDihIcG8d7fItwRZjKLnFZS283UBys\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"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\",\n                \"body\": \"{\\\"values\\\": \\\"A1:D4\\\", \\\"majorDimension\\\": null}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"43\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 400,\n                    \"message\": \"Bad Request\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 10:48:21 GMT\"\n                    ],\n                    \"content-length\": [\n                        \"499\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/17PEpS7qUDVuxfdDihIcG8d7fItwRZjKLnFZS283UBys?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 10:48:22 GMT\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_values_merge_cells_outside_of_range\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"130\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 10:49:17 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"217\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1tm489DjgHwUokxA5k0sLGLpFhOMaucWRXQZeBd84iIE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 10:49:17 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3361\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1tm489DjgHwUokxA5k0sLGLpFhOMaucWRXQZeBd84iIE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 10:49:18 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"3361\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1tm489DjgHwUokxA5k0sLGLpFhOMaucWRXQZeBd84iIE/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 10:49:18 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1tm489DjgHwUokxA5k0sLGLpFhOMaucWRXQZeBd84iIE\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1tm489DjgHwUokxA5k0sLGLpFhOMaucWRXQZeBd84iIE:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 10:49:18 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1tm489DjgHwUokxA5k0sLGLpFhOMaucWRXQZeBd84iIE\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"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\",\n                \"body\": \"{\\\"values\\\": \\\"A1:D4\\\", \\\"majorDimension\\\": null}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"43\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 400,\n                    \"message\": \"Bad Request\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 10:49:18 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"content-length\": [\n                        \"499\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1tm489DjgHwUokxA5k0sLGLpFhOMaucWRXQZeBd84iIE?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 19 Oct 2023 10:49:19 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_values_merge_cells_with_named_range.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_values_merge_cells_with_named_range\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"130\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:30:30 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"217\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:30:30 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3361\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:30:31 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3361\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:30:32 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 3}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:30:32 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY/values/%27Sheet1%27%21A1%3AC4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"1\\\", \\\"2\\\", \\\"4\\\"], [\\\"down\\\", \\\"up\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"2\\\"], [\\\"num\\\", \\\"val\\\", \\\"\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"84\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:30:32 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:C4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 3,\\n  \\\"updatedCells\\\": 12\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"mergeCells\\\": {\\\"mergeType\\\": \\\"MERGE_ALL\\\", \\\"range\\\": {\\\"startRowIndex\\\": 1, \\\"endRowIndex\\\": 3, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 1, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"165\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:30:33 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"mergeCells\\\": {\\\"mergeType\\\": \\\"MERGE_ALL\\\", \\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 2, \\\"startColumnIndex\\\": 2, \\\"endColumnIndex\\\": 3, \\\"sheetId\\\": 0}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"165\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:30:34 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addNamedRange\\\": {\\\"namedRange\\\": {\\\"name\\\": \\\"NamedRange\\\", \\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 3, \\\"startColumnIndex\\\": 1, \\\"endColumnIndex\\\": 3, \\\"sheetId\\\": 0}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"180\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:30:35 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"403\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY/values/%27Sheet1%27%21NamedRange\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:30:36 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"167\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:30:36 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3905\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1fOQu4HoVgs_JAvi_-KYm9z_Qmcy03Y7F-nZwXtlpNrY?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Date\": [\n                        \"Mon, 20 Nov 2023 12:30:37 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_values_returns_padded_get_as_listoflists.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_values_returns_padded_get_as_listoflists\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"135\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Sat, 28 Oct 2023 21:19:19 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"content-length\": [\n                        \"222\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Sat, 28 Oct 2023 21:19:19 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"content-length\": [\n                        \"3366\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Sat, 28 Oct 2023 21:19:20 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"content-length\": [\n                        \"3366\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Sat, 28 Oct 2023 21:19:21 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Sat, 28 Oct 2023 21:19:21 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"1\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"2\\\"]], \\\"majorDimension\\\": null}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"110\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Sat, 28 Oct 2023 21:19:22 GMT\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0/values/%27Sheet1%27%21A1%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Sat, 28 Oct 2023 21:19:22 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0/values/%27Sheet1%27%21A1%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Sat, 28 Oct 2023 21:19:22 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1q5z03onXGShpt-f5RETHLIE8jDP-TGhZWYISe4qViQ0?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Sat, 28 Oct 2023 21:19:23 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_get_values_with_args_or_kwargs.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_get_values_with_args_or_kwargs\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"121\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Date\": [\n                        \"Sun, 13 Aug 2023 08:24:46 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"208\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Sun, 13 Aug 2023 08:24:46 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3352\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Date\": [\n                        \"Sun, 13 Aug 2023 08:24:47 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"218\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Sun, 13 Aug 2023 08:24:47 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3352\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Sun, 13 Aug 2023 08:24:47 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Sun, 13 Aug 2023 08:24:47 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"1\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"x\\\", \\\"y\\\", \\\"title\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"2\\\", \\\"\\\"], [\\\"num\\\", \\\"val\\\", \\\"\\\", \\\"0\\\"]], \\\"majorDimension\\\": null}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"124\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Sun, 13 Aug 2023 08:24:48 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU/values/%27Sheet1%27%21A1%3AD4?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Sun, 13 Aug 2023 08:24:48 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"250\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU/values/%27Sheet1%27%21A1%3AD4?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Sun, 13 Aug 2023 08:24:48 GMT\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"250\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Date\": [\n                        \"Sun, 13 Aug 2023 08:24:49 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_group_columns.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_group_columns\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"104\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:08 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"191\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:09 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:09 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"201\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:09 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:10 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addDimensionGroup\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"COLUMNS\\\", \\\"startIndex\\\": 0, \\\"endIndex\\\": 2}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"120\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:10 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"360\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:10 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3577\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"deleteDimensionGroup\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"COLUMNS\\\", \\\"startIndex\\\": 0, \\\"endIndex\\\": 2}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"123\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:11 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"135\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\\\",\\n  \\\"replies\\\": [\\n    {\\n      \\\"deleteDimensionGroup\\\": {}\\n    }\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:11 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3378\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:12 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_group_columns\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"104\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:19:59 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"191\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0\\\",\\n  \\\"name\\\": \\\"Test WorksheetTest test_group_columns\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:03 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:03 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:04 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addDimensionGroup\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"COLUMNS\\\", \\\"startIndex\\\": 0, \\\"endIndex\\\": 2}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"120\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:04 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"360\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:04 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3577\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"deleteDimensionGroup\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"COLUMNS\\\", \\\"startIndex\\\": 0, \\\"endIndex\\\": 2}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"123\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:05 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"135\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0\\\",\\n  \\\"replies\\\": [\\n    {\\n      \\\"deleteDimensionGroup\\\": {}\\n    }\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:05 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3378\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1MP54izZGPIN4J5Fd7FgFLJGO7devNCcKGX9ZXIPIsj0?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:06 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_group_rows.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_group_rows\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"101\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:14 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"188\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:15 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:16 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"198\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:16 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:16 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addDimensionGroup\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"ROWS\\\", \\\"startIndex\\\": 0, \\\"endIndex\\\": 2}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"117\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:17 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"357\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:17 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3565\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"deleteDimensionGroup\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"ROWS\\\", \\\"startIndex\\\": 0, \\\"endIndex\\\": 2}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"120\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:17 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"135\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\\\",\\n  \\\"replies\\\": [\\n    {\\n      \\\"deleteDimensionGroup\\\": {}\\n    }\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:17 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3372\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:18 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_group_rows\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"101\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:08 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"188\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:09 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:09 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:09 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addDimensionGroup\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"ROWS\\\", \\\"startIndex\\\": 0, \\\"endIndex\\\": 2}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"117\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:10 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"357\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:10 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3565\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"deleteDimensionGroup\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"ROWS\\\", \\\"startIndex\\\": 0, \\\"endIndex\\\": 2}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"120\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:10 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"135\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420\\\",\\n  \\\"replies\\\": [\\n    {\\n      \\\"deleteDimensionGroup\\\": {}\\n    }\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:11 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3372\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1gEzjgmDY-GunB5o7Elf_9jt3jZknxU4h9vjZfoh0420?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:12 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_hide_columns_rows.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_hide_columns_rows\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"108\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:21 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"195\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:21 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3339\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:22 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"205\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:22 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3339\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:22 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateDimensionProperties\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"COLUMNS\\\", \\\"startIndex\\\": 0, \\\"endIndex\\\": 2}, \\\"properties\\\": {\\\"hiddenByUser\\\": true}, \\\"fields\\\": \\\"hiddenByUser\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"192\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:22 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateDimensionProperties\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"COLUMNS\\\", \\\"startIndex\\\": 0, \\\"endIndex\\\": 2}, \\\"properties\\\": {\\\"hiddenByUser\\\": false}, \\\"fields\\\": \\\"hiddenByUser\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"193\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:23 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateDimensionProperties\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"ROWS\\\", \\\"startIndex\\\": 0, \\\"endIndex\\\": 2}, \\\"properties\\\": {\\\"hiddenByUser\\\": true}, \\\"fields\\\": \\\"hiddenByUser\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"189\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:23 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateDimensionProperties\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"ROWS\\\", \\\"startIndex\\\": 0, \\\"endIndex\\\": 2}, \\\"properties\\\": {\\\"hiddenByUser\\\": false}, \\\"fields\\\": \\\"hiddenByUser\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:23 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:24 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_hide_columns_rows\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"108\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:15 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"195\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:15 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3339\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:16 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3339\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:16 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateDimensionProperties\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"COLUMNS\\\", \\\"startIndex\\\": 0, \\\"endIndex\\\": 2}, \\\"properties\\\": {\\\"hiddenByUser\\\": true}, \\\"fields\\\": \\\"hiddenByUser\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"192\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:16 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateDimensionProperties\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"COLUMNS\\\", \\\"startIndex\\\": 0, \\\"endIndex\\\": 2}, \\\"properties\\\": {\\\"hiddenByUser\\\": false}, \\\"fields\\\": \\\"hiddenByUser\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"193\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:17 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateDimensionProperties\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"ROWS\\\", \\\"startIndex\\\": 0, \\\"endIndex\\\": 2}, \\\"properties\\\": {\\\"hiddenByUser\\\": true}, \\\"fields\\\": \\\"hiddenByUser\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"189\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:17 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateDimensionProperties\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"ROWS\\\", \\\"startIndex\\\": 0, \\\"endIndex\\\": 2}, \\\"properties\\\": {\\\"hiddenByUser\\\": false}, \\\"fields\\\": \\\"hiddenByUser\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:17 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1lAg8a4d-UzMdGFqi7IqGQO7ql08iJT7noAIaVB-f1_0?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:18 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_hide_gridlines.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_hide_gridlines\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"105\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:27 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\\\",\\n  \\\"name\\\": \\\"Test WorksheetTest test_hide_gridlines\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:27 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:28 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"202\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:28 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:28 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:28 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"hideGridlines\\\": true}}, \\\"fields\\\": \\\"gridProperties.hideGridlines\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"158\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:29 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:29 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3369\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:30 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_hide_gridlines\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"105\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:21 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:22 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:23 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:23 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:23 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"hideGridlines\\\": true}}, \\\"fields\\\": \\\"gridProperties.hideGridlines\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"158\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:24 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:24 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3369\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1PO_ezMDLGXFzpr7zD5cuhOigyJuluKZl4A5UiP2fpyM?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:25 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_hide_show_worksheet.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_hide_show_worksheet\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"110\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:34 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"197\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:34 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:34 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"207\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:35 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:35 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"hidden\\\": true}, \\\"fields\\\": \\\"hidden\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"109\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 400,\n                    \"message\": \"Bad Request\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:35 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"177\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addSheet\\\": {\\\"properties\\\": {\\\"title\\\": \\\"you cannot see me\\\", \\\"sheetType\\\": \\\"GRID\\\", \\\"gridProperties\\\": {\\\"rowCount\\\": 2, \\\"columnCount\\\": 2}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"150\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:36 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"388\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:36 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3592\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 1513170215, \\\"hidden\\\": true}, \\\"fields\\\": \\\"hidden\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"118\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:36 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:36 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3616\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 1513170215, \\\"hidden\\\": false}, \\\"fields\\\": \\\"hidden\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"119\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:37 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:37 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3592\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:38 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_hide_show_worksheet\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"110\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:28 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"197\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:29 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:29 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:30 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"hidden\\\": true}, \\\"fields\\\": \\\"hidden\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"109\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 400,\n                    \"message\": \"Bad Request\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:30 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"177\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addSheet\\\": {\\\"properties\\\": {\\\"title\\\": \\\"you cannot see me\\\", \\\"sheetType\\\": \\\"GRID\\\", \\\"gridProperties\\\": {\\\"rowCount\\\": 2, \\\"columnCount\\\": 2}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"150\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:30 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"387\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:31 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3591\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 940685769, \\\"hidden\\\": true}, \\\"fields\\\": \\\"hidden\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"117\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:31 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:32 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3615\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 940685769, \\\"hidden\\\": false}, \\\"fields\\\": \\\"hidden\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"118\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:32 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:32 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3591\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/158kNL_ICI4XSAfcAkfsN5adpykrHocFQkblF9soU2n0?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:33 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_insert_cols.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_insert_cols\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"102\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:41 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"189\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:42 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3333\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:42 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"199\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:42 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3333\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:42 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/values/%27Sheet1%27%21A1%3AD6\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:43 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:D6\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"567\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:43 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D6\\\",\\n  \\\"updatedRows\\\": 6,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 24\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"insertDimension\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"COLUMNS\\\", \\\"startIndex\\\": 1, \\\"endIndex\\\": 3}, \\\"inheritFromBefore\\\": false}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"146\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:44 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/values/%27Sheet1%27%21B1:append?valueInputOption=RAW\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"229\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:44 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"264\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/values/%27Sheet1%27%21B1%3AB?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:44 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"210\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/values/%27Sheet1%27%21C1%3AC?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:45 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"210\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:45 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_insert_cols\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"102\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:36 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"189\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:36 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3333\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:36 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3333\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:37 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI/values/%27Sheet1%27%21A1%3AD6\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:37 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:D6\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"567\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:37 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D6\\\",\\n  \\\"updatedRows\\\": 6,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 24\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"insertDimension\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"COLUMNS\\\", \\\"startIndex\\\": 1, \\\"endIndex\\\": 3}, \\\"inheritFromBefore\\\": false}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"146\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:38 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI/values/%27Sheet1%27%21B1:append?valueInputOption=RAW\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"229\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:38 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"264\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI/values/%27Sheet1%27%21B1%3AB?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:38 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"210\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI/values/%27Sheet1%27%21C1%3AC?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:39 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"210\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1r_JLiepCwqR79gO9vNOj8lfCt6hbNziLBFHLiztJmDI?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:39 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_insert_row.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_insert_row\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"101\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:47 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"188\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:48 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:48 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"198\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:49 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:49 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21A1%3AD6\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:49 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:D6\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"543\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:50 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D6\\\",\\n  \\\"updatedRows\\\": 6,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 24\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"insertDimension\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"ROWS\\\", \\\"startIndex\\\": 1, \\\"endIndex\\\": 2}, \\\"inheritFromBefore\\\": false}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"143\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:50 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21A2:append?valueInputOption=RAW\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"216\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:50 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"264\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21A2%3A2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:50 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"312\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21B2?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"=1+1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"22\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:51 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!B2\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"insertDimension\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"ROWS\\\", \\\"startIndex\\\": 0, \\\"endIndex\\\": 1}, \\\"inheritFromBefore\\\": false}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"143\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:51 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21A1:append?valueInputOption=RAW\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"216\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:51 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"264\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21B3?valueRenderOption=FORMULA\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:52 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"99\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!B3\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"=1+1\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:52 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_insert_row\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"101\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:42 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"188\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:43 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:43 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3332\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:43 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA/values/%27Sheet1%27%21A1%3AD6\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:44 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:D6\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"543\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:44 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D6\\\",\\n  \\\"updatedRows\\\": 6,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 24\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"insertDimension\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"ROWS\\\", \\\"startIndex\\\": 1, \\\"endIndex\\\": 2}, \\\"inheritFromBefore\\\": false}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"143\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:45 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA/values/%27Sheet1%27%21A2:append?valueInputOption=RAW\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"216\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:45 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"264\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA/values/%27Sheet1%27%21A2%3A2\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:45 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"312\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA/values/%27Sheet1%27%21B2?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"=1+1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"22\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:46 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!B2\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"insertDimension\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"dimension\\\": \\\"ROWS\\\", \\\"startIndex\\\": 0, \\\"endIndex\\\": 1}, \\\"inheritFromBefore\\\": false}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"143\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:46 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA/values/%27Sheet1%27%21A1:append?valueInputOption=RAW\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"216\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:46 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"264\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA/values/%27Sheet1%27%21B3?valueRenderOption=FORMULA\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:46 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"99\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!B3\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"=1+1\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1SIvk7JK_jO0RzhYEwFMKPgCakcrvgQz4e4xqRf-aVcA?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:47 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_range.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_range\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"96\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:55 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"183\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo\\\",\\n  \\\"name\\\": \\\"Test WorksheetTest test_range\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:56 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3327\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:56 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"193\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:56 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3327\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:56 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo/values/%27Sheet1%27%21A1%3AA5\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:57 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:A5\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo/values/%27Sheet1%27%21A1%3AA5\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:57 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:A5\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:44:58 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_range\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"96\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:51 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"183\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"17yFVxovunzmMkvskylbJF378ghVLwOj46HAElWeYT0E\\\",\\n  \\\"name\\\": \\\"Test WorksheetTest test_range\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/17yFVxovunzmMkvskylbJF378ghVLwOj46HAElWeYT0E?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:52 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3327\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/17yFVxovunzmMkvskylbJF378ghVLwOj46HAElWeYT0E?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:52 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3327\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/17yFVxovunzmMkvskylbJF378ghVLwOj46HAElWeYT0E/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:52 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"17yFVxovunzmMkvskylbJF378ghVLwOj46HAElWeYT0E\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/17yFVxovunzmMkvskylbJF378ghVLwOj46HAElWeYT0E/values/%27Sheet1%27%21A1%3AA5\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:53 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:A5\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/17yFVxovunzmMkvskylbJF378ghVLwOj46HAElWeYT0E/values/%27Sheet1%27%21A1%3AA5\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:53 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:A5\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/17yFVxovunzmMkvskylbJF378ghVLwOj46HAElWeYT0E?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:54 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_range_get_all_values.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_range_get_all_values\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"111\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:01 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"198\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:02 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3342\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:02 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"208\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:03 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3342\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:03 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:04 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"\\\", \\\"Hi\\\", \\\"Mom\\\", \\\"\\\"], [\\\"My\\\", \\\"Name\\\", \\\"is\\\", \\\"bon\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"1\\\", \\\"2\\\", \\\"3\\\", \\\"4\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"104\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:04 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:05 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"250\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8/values/%27Sheet1%27%21A1%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:05 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"250\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:06 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_range_get_all_values\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"111\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:56 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"198\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:57 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3342\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:57 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3342\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:58 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 4, \\\"columnCount\\\": 4}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:58 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"\\\", \\\"Hi\\\", \\\"Mom\\\", \\\"\\\"], [\\\"My\\\", \\\"Name\\\", \\\"is\\\", \\\"bon\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"1\\\", \\\"2\\\", \\\"3\\\", \\\"4\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"104\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:58 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:59 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"250\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM/values/%27Sheet1%27%21A1%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:20:59 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"250\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1taauKtia_ngRA69rjBZGQ4r8lhyNX75dhImouU55EKM?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:00 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_range_reversed.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_range_reversed\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"105\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:09 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:10 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:10 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"202\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:11 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:11 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM/values/%27Sheet1%27%21A1%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:11 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM/values/%27Sheet1%27%21D4%3AA1\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:12 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:12 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_range_reversed\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"105\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:03 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1GkIenNA0yGP0eWnO1TAjx1b-Mu7MG2Ie1AeGGKmPUec?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:04 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1GkIenNA0yGP0eWnO1TAjx1b-Mu7MG2Ie1AeGGKmPUec?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:04 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1GkIenNA0yGP0eWnO1TAjx1b-Mu7MG2Ie1AeGGKmPUec/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:04 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1GkIenNA0yGP0eWnO1TAjx1b-Mu7MG2Ie1AeGGKmPUec\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1GkIenNA0yGP0eWnO1TAjx1b-Mu7MG2Ie1AeGGKmPUec/values/%27Sheet1%27%21A1%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:05 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1GkIenNA0yGP0eWnO1TAjx1b-Mu7MG2Ie1AeGGKmPUec/values/%27Sheet1%27%21D4%3AA1\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:05 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1GkIenNA0yGP0eWnO1TAjx1b-Mu7MG2Ie1AeGGKmPUec?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:06 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_range_unbounded.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_range_unbounded\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"106\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:15 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"193\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:15 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3337\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:15 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"203\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:16 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3337\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:16 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0/values/%27Sheet1%27%21A1%3AC\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:17 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"61\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:C1000\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0/values/%27Sheet1%27%21A1%3AC1000\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:17 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"61\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:C1000\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:18 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_range_unbounded\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"106\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:08 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"193\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1wl41JartsYmQ8vnDTqdERBBnyt3MkJy3zAp88efreUs\\\",\\n  \\\"name\\\": \\\"Test WorksheetTest test_range_unbounded\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1wl41JartsYmQ8vnDTqdERBBnyt3MkJy3zAp88efreUs?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:09 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3337\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1wl41JartsYmQ8vnDTqdERBBnyt3MkJy3zAp88efreUs?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:09 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3337\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1wl41JartsYmQ8vnDTqdERBBnyt3MkJy3zAp88efreUs/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:09 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1wl41JartsYmQ8vnDTqdERBBnyt3MkJy3zAp88efreUs\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1wl41JartsYmQ8vnDTqdERBBnyt3MkJy3zAp88efreUs/values/%27Sheet1%27%21A1%3AC\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:10 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"61\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:C1000\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1wl41JartsYmQ8vnDTqdERBBnyt3MkJy3zAp88efreUs/values/%27Sheet1%27%21A1%3AC1000\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:10 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"61\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:C1000\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1wl41JartsYmQ8vnDTqdERBBnyt3MkJy3zAp88efreUs?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:11 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_reorder_worksheets.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_reorder_worksheets\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"109\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:20 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"196\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:21 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3340\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:21 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"206\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:21 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3340\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:22 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:22 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3340\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:22 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3340\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"index\\\": 0}, \\\"fields\\\": \\\"index\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"104\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:22 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:23 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3340\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:23 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_reorder_worksheets\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"109\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:14 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"196\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:15 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3340\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:15 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3340\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:15 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:16 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3340\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:16 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3340\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"index\\\": 0}, \\\"fields\\\": \\\"index\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"104\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:16 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:17 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3340\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1nmWXCj_In-XDWVgOUfXmGch2n3caQzugLzIg2xjMTu8?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:17 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_resize.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_resize\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"97\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:26 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"184\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:26 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:27 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"194\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:27 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:28 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 1010}}, \\\"fields\\\": \\\"gridProperties/rowCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"148\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:29 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:29 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"columnCount\\\": 36}}, \\\"fields\\\": \\\"gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"152\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:30 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:30 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 1000, \\\"columnCount\\\": 26}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"194\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:30 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:30 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:31 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_resize\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"97\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:21 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"184\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk\\\",\\n  \\\"name\\\": \\\"Test WorksheetTest test_resize\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:21 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:22 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:22 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 1010}}, \\\"fields\\\": \\\"gridProperties/rowCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"148\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:23 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:23 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"columnCount\\\": 36}}, \\\"fields\\\": \\\"gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"152\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:23 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:23 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 1000, \\\"columnCount\\\": 26}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"194\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:24 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:24 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3328\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/196Sy9gKEk9-ROi3YX9eOo6CRQBIEqreA3eI7z2QyUOk?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:25 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_set_tab_color.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_set_tab_color\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"104\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Sun, 13 Aug 2023 10:27:12 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"191\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Sun, 13 Aug 2023 10:27:13 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Sun, 13 Aug 2023 10:27:13 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"201\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Sun, 13 Aug 2023 10:27:13 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"3335\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Sun, 13 Aug 2023 10:27:14 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw?fields=sheets.properties.tabColorStyle\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Sun, 13 Aug 2023 10:27:14 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"57\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"sheets\\\": [\\n    {\\n      \\\"properties\\\": {}\\n    }\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"tabColorStyle\\\": {\\\"rgbColor\\\": {\\\"red\\\": 1.0, \\\"green\\\": 0.0, \\\"blue\\\": 0.4980392156862745}}}, \\\"fields\\\": \\\"tabColorStyle\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"187\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Sun, 13 Aug 2023 10:27:14 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw?fields=sheets.properties.tabColorStyle\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Sun, 13 Aug 2023 10:27:15 GMT\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"sheets\\\": [\\n    {\\n      \\\"properties\\\": {\\n        \\\"tabColorStyle\\\": {\\n          \\\"rgbColor\\\": {\\n            \\\"red\\\": 1,\\n            \\\"blue\\\": 0.49803922\\n          }\\n        }\\n      }\\n    }\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1zqB5k2FM9punzprCT_HVck50cYnsqSLV8UMgr3VP-Jw?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Date\": [\n                        \"Sun, 13 Aug 2023 10:27:15 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_show_gridlines.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_show_gridlines\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"105\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:33 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:34 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:34 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"202\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:34 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:35 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:35 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"hideGridlines\\\": true}}, \\\"fields\\\": \\\"gridProperties.hideGridlines\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"158\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:36 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"hideGridlines\\\": false}}, \\\"fields\\\": \\\"gridProperties.hideGridlines\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"159\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:36 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:36 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:37 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_show_gridlines\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"105\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:29 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:29 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:30 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:30 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:31 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"hideGridlines\\\": true}}, \\\"fields\\\": \\\"gridProperties.hideGridlines\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"158\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:31 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"hideGridlines\\\": false}}, \\\"fields\\\": \\\"gridProperties.hideGridlines\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"159\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:31 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:32 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/190aeViM-iuAOOG0kkOYcdQgVxvsCRniLatCjad3Fj5o?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:32 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_sort.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_sort\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"95\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:39 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"182\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\\\",\\n  \\\"name\\\": \\\"Test WorksheetTest test_sort\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:39 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3326\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:40 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:40 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3326\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:40 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 6, \\\"columnCount\\\": 3}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:41 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27%21A1%3AC6\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:41 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:C6\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27%21A1%3AC6?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"Apple\\\", \\\"2012\\\", \\\"4\\\"], [\\\"Banana\\\", \\\"2013\\\", \\\"3\\\"], [\\\"Canada\\\", \\\"2007\\\", \\\"1\\\"], [\\\"Dinosaur\\\", \\\"2013\\\", \\\"6\\\"], [\\\"Elephant\\\", \\\"2019\\\", \\\"2\\\"], [\\\"Fox\\\", \\\"2077\\\", \\\"5\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"162\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:41 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:C6\\\",\\n  \\\"updatedRows\\\": 6,\\n  \\\"updatedColumns\\\": 3,\\n  \\\"updatedCells\\\": 18\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"sortRange\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 6, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 3}, \\\"sortSpecs\\\": [{\\\"dimensionIndex\\\": 2, \\\"sortOrder\\\": \\\"ASCENDING\\\"}]}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"202\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:42 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:42 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"394\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"sortRange\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 6, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 3}, \\\"sortSpecs\\\": [{\\\"dimensionIndex\\\": 0, \\\"sortOrder\\\": \\\"DESCENDING\\\"}]}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"203\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:42 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:43 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"394\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"sortRange\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 6, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 3}, \\\"sortSpecs\\\": [{\\\"dimensionIndex\\\": 1, \\\"sortOrder\\\": \\\"ASCENDING\\\"}, {\\\"dimensionIndex\\\": 2, \\\"sortOrder\\\": \\\"ASCENDING\\\"}]}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"251\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:43 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:43 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"394\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"sortRange\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 6, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 3}, \\\"sortSpecs\\\": [{\\\"dimensionIndex\\\": 2, \\\"sortOrder\\\": \\\"ASCENDING\\\"}]}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"202\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:44 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:44 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"394\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"sortRange\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"startRowIndex\\\": 1, \\\"endRowIndex\\\": 6, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 3}, \\\"sortSpecs\\\": [{\\\"dimensionIndex\\\": 2, \\\"sortOrder\\\": \\\"DESCENDING\\\"}]}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"203\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:44 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:44 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"394\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:45 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_sort\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"95\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:36 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"182\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:37 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3326\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:37 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3326\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:37 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"gridProperties\\\": {\\\"rowCount\\\": 6, \\\"columnCount\\\": 3}}, \\\"fields\\\": \\\"gridProperties/rowCount,gridProperties/columnCount\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"190\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:38 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w/values/%27Sheet1%27%21A1%3AC6\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:38 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:C6\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w/values/%27Sheet1%27%21A1%3AC6?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"Apple\\\", \\\"2012\\\", \\\"4\\\"], [\\\"Banana\\\", \\\"2013\\\", \\\"3\\\"], [\\\"Canada\\\", \\\"2007\\\", \\\"1\\\"], [\\\"Dinosaur\\\", \\\"2013\\\", \\\"6\\\"], [\\\"Elephant\\\", \\\"2019\\\", \\\"2\\\"], [\\\"Fox\\\", \\\"2077\\\", \\\"5\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"162\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:39 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:C6\\\",\\n  \\\"updatedRows\\\": 6,\\n  \\\"updatedColumns\\\": 3,\\n  \\\"updatedCells\\\": 18\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"sortRange\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 6, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 3}, \\\"sortSpecs\\\": [{\\\"dimensionIndex\\\": 2, \\\"sortOrder\\\": \\\"ASCENDING\\\"}]}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"202\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:39 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:39 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"394\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"sortRange\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 6, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 3}, \\\"sortSpecs\\\": [{\\\"dimensionIndex\\\": 0, \\\"sortOrder\\\": \\\"DESCENDING\\\"}]}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"203\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:40 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:40 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"394\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"sortRange\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 6, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 3}, \\\"sortSpecs\\\": [{\\\"dimensionIndex\\\": 1, \\\"sortOrder\\\": \\\"ASCENDING\\\"}, {\\\"dimensionIndex\\\": 2, \\\"sortOrder\\\": \\\"ASCENDING\\\"}]}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"251\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:40 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:41 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"394\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"sortRange\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 6, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 3}, \\\"sortSpecs\\\": [{\\\"dimensionIndex\\\": 2, \\\"sortOrder\\\": \\\"ASCENDING\\\"}]}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"202\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:41 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:41 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"394\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"sortRange\\\": {\\\"range\\\": {\\\"sheetId\\\": 0, \\\"startRowIndex\\\": 1, \\\"endRowIndex\\\": 6, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 3}, \\\"sortSpecs\\\": [{\\\"dimensionIndex\\\": 2, \\\"sortOrder\\\": \\\"DESCENDING\\\"}]}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"203\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:42 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w/values/%27Sheet1%27\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:42 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"394\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1LDeKi8JqWbPl_aXgduYViDe-KPc1yYWOK-FQ2Rfy20w?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:43 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_update_acell.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_update_acell\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"103\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:48 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU\\\",\\n  \\\"name\\\": \\\"Test WorksheetTest test_update_acell\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:48 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:49 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"200\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:49 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:49 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU/values/%27Sheet1%27%21A2?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_update_acell 1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"37\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:50 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A2\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:50 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"114\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"test_update_acell 1\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:51 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_update_acell\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"103\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:46 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_0Adhim7liTGYB3Mlxsw0lI6BfHbYdVup-lQvkx0slQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:47 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_0Adhim7liTGYB3Mlxsw0lI6BfHbYdVup-lQvkx0slQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:47 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_0Adhim7liTGYB3Mlxsw0lI6BfHbYdVup-lQvkx0slQ/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:48 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1_0Adhim7liTGYB3Mlxsw0lI6BfHbYdVup-lQvkx0slQ\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_0Adhim7liTGYB3Mlxsw0lI6BfHbYdVup-lQvkx0slQ/values/%27Sheet1%27%21A2?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_update_acell 1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"37\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:48 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1_0Adhim7liTGYB3Mlxsw0lI6BfHbYdVup-lQvkx0slQ\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A2\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1_0Adhim7liTGYB3Mlxsw0lI6BfHbYdVup-lQvkx0slQ/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:49 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"114\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"test_update_acell 1\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1_0Adhim7liTGYB3Mlxsw0lI6BfHbYdVup-lQvkx0slQ?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:49 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_update_acell\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"103\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 28 Sep 2023 22:04:11 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1kTy39ZPF4F8obHLb3mLWKeBbdeFNOH6ckIdCASAHfPo\\\",\\n  \\\"name\\\": \\\"Test WorksheetTest test_update_acell\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1kTy39ZPF4F8obHLb3mLWKeBbdeFNOH6ckIdCASAHfPo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 28 Sep 2023 22:04:12 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1kTy39ZPF4F8obHLb3mLWKeBbdeFNOH6ckIdCASAHfPo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 28 Sep 2023 22:04:12 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1kTy39ZPF4F8obHLb3mLWKeBbdeFNOH6ckIdCASAHfPo/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 28 Sep 2023 22:04:13 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1kTy39ZPF4F8obHLb3mLWKeBbdeFNOH6ckIdCASAHfPo\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1kTy39ZPF4F8obHLb3mLWKeBbdeFNOH6ckIdCASAHfPo/values/%27Sheet1%27%21A2?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_update_acell 1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"37\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 28 Sep 2023 22:04:13 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1kTy39ZPF4F8obHLb3mLWKeBbdeFNOH6ckIdCASAHfPo\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A2\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1kTy39ZPF4F8obHLb3mLWKeBbdeFNOH6ckIdCASAHfPo/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 28 Sep 2023 22:04:13 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"content-length\": [\n                        \"114\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"test_update_acell 1\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1kTy39ZPF4F8obHLb3mLWKeBbdeFNOH6ckIdCASAHfPo?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Date\": [\n                        \"Thu, 28 Sep 2023 22:04:14 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_update_and_get.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_update_and_get\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"105\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:53 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:53 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:53 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"202\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:54 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:54 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk/values/%27Sheet1%27%21A1?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"A1\\\", \\\"B1\\\", \\\"\\\", \\\"D1\\\"], [\\\"\\\", \\\"b2\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"A4\\\", \\\"B4\\\", \\\"\\\", \\\"D4\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"98\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:55 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk/values/%27Sheet1%27%21A1%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:55 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"234\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:55 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_update_and_get\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"105\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:53 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"192\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1FWpzD9JcXk15AzCvq28u0eJa1bHoMkSbLF1u1XOo0zc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:54 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1FWpzD9JcXk15AzCvq28u0eJa1bHoMkSbLF1u1XOo0zc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:54 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3336\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1FWpzD9JcXk15AzCvq28u0eJa1bHoMkSbLF1u1XOo0zc/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:55 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1FWpzD9JcXk15AzCvq28u0eJa1bHoMkSbLF1u1XOo0zc\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1FWpzD9JcXk15AzCvq28u0eJa1bHoMkSbLF1u1XOo0zc/values/%27Sheet1%27%21A1?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"A1\\\", \\\"B1\\\", \\\"\\\", \\\"D1\\\"], [\\\"\\\", \\\"b2\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"A4\\\", \\\"B4\\\", \\\"\\\", \\\"D4\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"98\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:55 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1FWpzD9JcXk15AzCvq28u0eJa1bHoMkSbLF1u1XOo0zc\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1FWpzD9JcXk15AzCvq28u0eJa1bHoMkSbLF1u1XOo0zc/values/%27Sheet1%27%21A1%3AD4\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:56 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"234\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1FWpzD9JcXk15AzCvq28u0eJa1bHoMkSbLF1u1XOo0zc?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:56 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_update_cell.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_update_cell\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"102\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:58 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"189\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\\\",\\n  \\\"name\\\": \\\"Test WorksheetTest test_update_cell\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:58 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3333\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:59 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"199\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:59 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3333\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:45:59 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_update_cell 1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"36\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:00 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!B1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:00 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"113\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!B1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"test_update_cell 1\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[42]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"18\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:00 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!B1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:00 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!B1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"42\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"0042\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"22\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:01 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!B1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:01 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!B1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"42\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[42.01]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"21\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:01 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!B1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:01 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"100\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!B1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"42.01\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"\\\\u0410\\\\u0440\\\\u0442\\\\u0443\\\\u0440\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"48\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:02 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!B1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:02 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"105\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!B1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"\\u0410\\u0440\\u0442\\u0443\\u0440\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:02 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_update_cell\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"102\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:59 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"189\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:21:59 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3333\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3333\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_update_cell 1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"36\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:01 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!B1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:01 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"113\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!B1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"test_update_cell 1\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[42]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"18\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:01 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!B1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:02 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!B1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"42\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"0042\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"22\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:02 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!B1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:02 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!B1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"42\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[42.01]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"21\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:03 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!B1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:03 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"100\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!B1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"42.01\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"\\\\u0410\\\\u0440\\\\u0442\\\\u0443\\\\u0440\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"48\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:03 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!B1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:04 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"105\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!B1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"\\u0410\\u0440\\u0442\\u0443\\u0440\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1u9UBXdsxCtAjgHZQ3hZ_ieUZrc_Q9KysbO8UCaNwJ2Q?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:04 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_update_cell_multiline.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_update_cell_multiline\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"112\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:05 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"199\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:05 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:05 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"209\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:06 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:06 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_update_cell_multiline 1\\\\ntest_update_cell_multiline 1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"76\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:06 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!B1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:06 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"153\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:07 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_update_cell_multiline\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"112\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:08 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"199\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1koXKj8ej1tAP5ZvLi3w1FRKeBP3gSpsr5aQtkae1XjI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:08 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1koXKj8ej1tAP5ZvLi3w1FRKeBP3gSpsr5aQtkae1XjI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:09 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1koXKj8ej1tAP5ZvLi3w1FRKeBP3gSpsr5aQtkae1XjI/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:10 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1koXKj8ej1tAP5ZvLi3w1FRKeBP3gSpsr5aQtkae1XjI\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1koXKj8ej1tAP5ZvLi3w1FRKeBP3gSpsr5aQtkae1XjI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"test_update_cell_multiline 1\\\\ntest_update_cell_multiline 1\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"76\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:10 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1koXKj8ej1tAP5ZvLi3w1FRKeBP3gSpsr5aQtkae1XjI\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!B1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1koXKj8ej1tAP5ZvLi3w1FRKeBP3gSpsr5aQtkae1XjI/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:10 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"153\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1koXKj8ej1tAP5ZvLi3w1FRKeBP3gSpsr5aQtkae1XjI?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:11 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_update_cell_objects.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_update_cell_objects\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"110\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:10 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"197\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:11 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:11 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"207\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:11 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:12 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ/values/%27Sheet1%27%21A1%3AB2?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[null, \\\"cell row 1, col 2\\\"], [\\\"cell row 2 col 1\\\", null]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"69\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:12 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:B2\\\",\\n  \\\"updatedRows\\\": 2,\\n  \\\"updatedColumns\\\": 2,\\n  \\\"updatedCells\\\": 2\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:12 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"112\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!B1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"cell row 1, col 2\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:12 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"111\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"cell row 2 col 1\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:13 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_update_cell_objects\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"110\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:13 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"197\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1aUM6aETVbDEQj1WG1pWEvimWbGTtyf5ywpCRF3H5sGI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:14 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1aUM6aETVbDEQj1WG1pWEvimWbGTtyf5ywpCRF3H5sGI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:15 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1aUM6aETVbDEQj1WG1pWEvimWbGTtyf5ywpCRF3H5sGI/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:15 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1aUM6aETVbDEQj1WG1pWEvimWbGTtyf5ywpCRF3H5sGI\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1aUM6aETVbDEQj1WG1pWEvimWbGTtyf5ywpCRF3H5sGI/values/%27Sheet1%27%21A1%3AB2?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[null, \\\"cell row 1, col 2\\\"], [\\\"cell row 2 col 1\\\", null]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"69\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:15 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1aUM6aETVbDEQj1WG1pWEvimWbGTtyf5ywpCRF3H5sGI\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:B2\\\",\\n  \\\"updatedRows\\\": 2,\\n  \\\"updatedColumns\\\": 2,\\n  \\\"updatedCells\\\": 2\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1aUM6aETVbDEQj1WG1pWEvimWbGTtyf5ywpCRF3H5sGI/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:16 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"112\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!B1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"cell row 1, col 2\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1aUM6aETVbDEQj1WG1pWEvimWbGTtyf5ywpCRF3H5sGI/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:16 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"111\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A2\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"cell row 2 col 1\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1aUM6aETVbDEQj1WG1pWEvimWbGTtyf5ywpCRF3H5sGI?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:17 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_update_cell_unicode.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_update_cell_unicode\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"110\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:16 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"197\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:17 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:17 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"207\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:17 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:18 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"I\\\\u00f1t\\\\u00ebrn\\\\u00e2ti\\\\u00f4n\\\\u00e0liz\\\\u00e6ti\\\\u00f8n\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"73\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:19 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:19 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"122\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"I\\u00f1t\\u00ebrn\\u00e2ti\\u00f4n\\u00e0liz\\u00e6ti\\u00f8n\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:19 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_update_cell_unicode\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"110\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:19 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"197\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1tiJWULOmN3bdbIV6mxaBBCd_WGqCuXAEdILA-I7m3nc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:19 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1tiJWULOmN3bdbIV6mxaBBCd_WGqCuXAEdILA-I7m3nc?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:20 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3341\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1tiJWULOmN3bdbIV6mxaBBCd_WGqCuXAEdILA-I7m3nc/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:20 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1tiJWULOmN3bdbIV6mxaBBCd_WGqCuXAEdILA-I7m3nc\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1tiJWULOmN3bdbIV6mxaBBCd_WGqCuXAEdILA-I7m3nc/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED\",\n                \"body\": \"{\\\"values\\\": [[\\\"I\\\\u00f1t\\\\u00ebrn\\\\u00e2ti\\\\u00f4n\\\\u00e0liz\\\\u00e6ti\\\\u00f8n\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"73\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:20 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1tiJWULOmN3bdbIV6mxaBBCd_WGqCuXAEdILA-I7m3nc\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1tiJWULOmN3bdbIV6mxaBBCd_WGqCuXAEdILA-I7m3nc/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:21 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"122\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"I\\u00f1t\\u00ebrn\\u00e2ti\\u00f4n\\u00e0liz\\u00e6ti\\u00f8n\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1tiJWULOmN3bdbIV6mxaBBCd_WGqCuXAEdILA-I7m3nc?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:21 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_update_cells.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_update_cells\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"103\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:22 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:22 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:22 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"200\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:23 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:23 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU/values/%27Sheet1%27%21A1%3AA10\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:23 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"59\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:A10\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU/values/%27Sheet1%27%21A1%3AA10?valueInputOption=RAW\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"284\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:24 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"171\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:A10\\\",\\n  \\\"updatedRows\\\": 10,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 10\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU/values/%27Sheet1%27%21A1%3AA10\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:24 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"509\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:25 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_update_cells\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"103\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:25 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LSc-F6y73E4cfiUN6KRrK1HgO9jTUujcU7Jq239jc20?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:26 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LSc-F6y73E4cfiUN6KRrK1HgO9jTUujcU7Jq239jc20?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:26 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LSc-F6y73E4cfiUN6KRrK1HgO9jTUujcU7Jq239jc20/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:26 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1LSc-F6y73E4cfiUN6KRrK1HgO9jTUujcU7Jq239jc20\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LSc-F6y73E4cfiUN6KRrK1HgO9jTUujcU7Jq239jc20/values/%27Sheet1%27%21A1%3AA10\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:27 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"59\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:A10\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LSc-F6y73E4cfiUN6KRrK1HgO9jTUujcU7Jq239jc20/values/%27Sheet1%27%21A1%3AA10?valueInputOption=RAW\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"284\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:27 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"171\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1LSc-F6y73E4cfiUN6KRrK1HgO9jTUujcU7Jq239jc20\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:A10\\\",\\n  \\\"updatedRows\\\": 10,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 10\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1LSc-F6y73E4cfiUN6KRrK1HgO9jTUujcU7Jq239jc20/values/%27Sheet1%27%21A1%3AA10\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:27 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"509\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1LSc-F6y73E4cfiUN6KRrK1HgO9jTUujcU7Jq239jc20?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:28 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_update_cells_noncontiguous.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_update_cells_noncontiguous\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"117\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:27 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"204\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:28 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3348\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:28 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"214\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:28 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3348\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:29 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/values/%27Sheet1%27%21A1%3AD6\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:29 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:D6\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"927\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:29 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D6\\\",\\n  \\\"updatedRows\\\": 6,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 24\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/values/%27Sheet1%27%21A1%3AD6\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:29 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"1195\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"254\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:30 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D6\\\",\\n  \\\"updatedRows\\\": 2,\\n  \\\"updatedColumns\\\": 2,\\n  \\\"updatedCells\\\": 2\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/values/%27Sheet1%27%21A1%3AD6\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:30 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"1218\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:31 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_update_cells_noncontiguous\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"117\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:30 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"204\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:31 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3348\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:31 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3348\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:32 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo/values/%27Sheet1%27%21A1%3AD6\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:32 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"58\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1:D6\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"927\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:32 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D6\\\",\\n  \\\"updatedRows\\\": 6,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 24\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo/values/%27Sheet1%27%21A1%3AD6\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:33 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"1195\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW\",\n                \"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\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"254\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:33 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"168\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D6\\\",\\n  \\\"updatedRows\\\": 2,\\n  \\\"updatedColumns\\\": 2,\\n  \\\"updatedCells\\\": 2\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo/values/%27Sheet1%27%21A1%3AD6\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:34 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"1218\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1bDyWwroKgQATOmG_GKonZRrhxh4fw9PXq-KxXOGigXo?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:34 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_update_cells_unicode.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_update_cells_unicode\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"111\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:33 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"198\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:34 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3342\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:34 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"208\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:34 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3342\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:34 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:35 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"55\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw/values/%27Sheet1%27%21A1%3AA1?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"I\\\\u00f1t\\\\u00ebrn\\\\u00e2ti\\\\u00f4n\\\\u00e0liz\\\\u00e6ti\\\\u00f8n\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"73\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:35 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:35 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"122\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"I\\u00f1t\\u00ebrn\\u00e2ti\\u00f4n\\u00e0liz\\u00e6ti\\u00f8n\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:36 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_update_cells_unicode\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"111\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:36 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"198\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/139LrWtfSazccjRIRjgjuBBEYkyNZmQstwhtg7qHYRfQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:37 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3342\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/139LrWtfSazccjRIRjgjuBBEYkyNZmQstwhtg7qHYRfQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:37 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3342\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/139LrWtfSazccjRIRjgjuBBEYkyNZmQstwhtg7qHYRfQ/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:38 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"139LrWtfSazccjRIRjgjuBBEYkyNZmQstwhtg7qHYRfQ\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/139LrWtfSazccjRIRjgjuBBEYkyNZmQstwhtg7qHYRfQ/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:38 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"55\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/139LrWtfSazccjRIRjgjuBBEYkyNZmQstwhtg7qHYRfQ/values/%27Sheet1%27%21A1%3AA1?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"I\\\\u00f1t\\\\u00ebrn\\\\u00e2ti\\\\u00f4n\\\\u00e0liz\\\\u00e6ti\\\\u00f8n\\\"]]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"73\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:38 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"165\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"139LrWtfSazccjRIRjgjuBBEYkyNZmQstwhtg7qHYRfQ\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1\\\",\\n  \\\"updatedRows\\\": 1,\\n  \\\"updatedColumns\\\": 1,\\n  \\\"updatedCells\\\": 1\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/139LrWtfSazccjRIRjgjuBBEYkyNZmQstwhtg7qHYRfQ/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:39 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"122\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"range\\\": \\\"Sheet1!A1\\\",\\n  \\\"majorDimension\\\": \\\"ROWS\\\",\\n  \\\"values\\\": [\\n    [\\n      \\\"I\\u00f1t\\u00ebrn\\u00e2ti\\u00f4n\\u00e0liz\\u00e6ti\\u00f8n\\\"\\n    ]\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/139LrWtfSazccjRIRjgjuBBEYkyNZmQstwhtg7qHYRfQ?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:39 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_update_tab_color.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_update_tab_color\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"107\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:38 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"194\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:39 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3338\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:39 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"204\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:39 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3338\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:39 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ?fields=sheets.properties.tabColorStyle\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:40 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"57\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"sheets\\\": [\\n    {\\n      \\\"properties\\\": {}\\n    }\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"tabColorStyle\\\": {\\\"rgbColor\\\": {\\\"red\\\": 1, \\\"green\\\": 0, \\\"blue\\\": 0.5}}}, \\\"fields\\\": \\\"tabColorStyle\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"168\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:40 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ?fields=sheets.properties.tabColorStyle\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:40 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"sheets\\\": [\\n    {\\n      \\\"properties\\\": {\\n        \\\"tabColorStyle\\\": {\\n          \\\"rgbColor\\\": {\\n            \\\"red\\\": 1,\\n            \\\"blue\\\": 0.49803922\\n          }\\n        }\\n      }\\n    }\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:41 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_update_tab_color\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"107\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:43 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"194\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c002K7DCPuPUIZE2yckZh3zzc1FASrLKPdDNylfI-WI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:43 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3338\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c002K7DCPuPUIZE2yckZh3zzc1FASrLKPdDNylfI-WI?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:44 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3338\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c002K7DCPuPUIZE2yckZh3zzc1FASrLKPdDNylfI-WI/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:44 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1c002K7DCPuPUIZE2yckZh3zzc1FASrLKPdDNylfI-WI\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c002K7DCPuPUIZE2yckZh3zzc1FASrLKPdDNylfI-WI?fields=sheets.properties.tabColorStyle\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:44 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"57\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"sheets\\\": [\\n    {\\n      \\\"properties\\\": {}\\n    }\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c002K7DCPuPUIZE2yckZh3zzc1FASrLKPdDNylfI-WI:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"tabColorStyle\\\": {\\\"rgbColor\\\": {\\\"red\\\": 1, \\\"green\\\": 0, \\\"blue\\\": 0.5}}}, \\\"fields\\\": \\\"tabColorStyle\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"168\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:45 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1c002K7DCPuPUIZE2yckZh3zzc1FASrLKPdDNylfI-WI\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1c002K7DCPuPUIZE2yckZh3zzc1FASrLKPdDNylfI-WI?fields=sheets.properties.tabColorStyle\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:45 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"sheets\\\": [\\n    {\\n      \\\"properties\\\": {\\n        \\\"tabColorStyle\\\": {\\n          \\\"rgbColor\\\": {\\n            \\\"red\\\": 1,\\n            \\\"blue\\\": 0.49803922\\n          }\\n        }\\n      }\\n    }\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1c002K7DCPuPUIZE2yckZh3zzc1FASrLKPdDNylfI-WI?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:45 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_update_title.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_update_title\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"103\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:43 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:44 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:44 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"200\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:44 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:45 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:45 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"title\\\": \\\"I'm a new title\\\"}, \\\"fields\\\": \\\"title\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"120\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:45 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:45 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:46 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_update_title\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"103\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:49 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"190\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:50 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:50 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:51 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:51 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3334\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 0, \\\"title\\\": \\\"I'm a new title\\\"}, \\\"fields\\\": \\\"title\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"120\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:52 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:52 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3343\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1um3tPnQpPc6sKBNP_VsADOPLdkKaWjIg5A43nBCWrTQ?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:22:53 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_update_works_with_swapped_values_and_range.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_update_works_with_swapped_values_and_range\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"133\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 28 Oct 2023 21:44:13 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"content-length\": [\n                        \"220\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SzTESVEGy9dD7l7iUmAVRpLZK6C-uOfgqTYV9N_tA1U?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 28 Oct 2023 21:44:14 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3364\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SzTESVEGy9dD7l7iUmAVRpLZK6C-uOfgqTYV9N_tA1U?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 28 Oct 2023 21:44:14 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"3364\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SzTESVEGy9dD7l7iUmAVRpLZK6C-uOfgqTYV9N_tA1U/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 28 Oct 2023 21:44:14 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1SzTESVEGy9dD7l7iUmAVRpLZK6C-uOfgqTYV9N_tA1U\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"PUT\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SzTESVEGy9dD7l7iUmAVRpLZK6C-uOfgqTYV9N_tA1U/values/%27Sheet1%27%21A1?valueInputOption=RAW\",\n                \"body\": \"{\\\"values\\\": [[\\\"A1\\\", \\\"B1\\\", \\\"\\\", \\\"D1\\\"], [\\\"\\\", \\\"b2\\\", \\\"\\\", \\\"\\\"], [\\\"\\\", \\\"\\\", \\\"\\\", \\\"\\\"], [\\\"A4\\\", \\\"B4\\\", \\\"\\\", \\\"D4\\\"]], \\\"majorDimension\\\": null}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"122\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 28 Oct 2023 21:44:15 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"169\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1SzTESVEGy9dD7l7iUmAVRpLZK6C-uOfgqTYV9N_tA1U\\\",\\n  \\\"updatedRange\\\": \\\"Sheet1!A1:D4\\\",\\n  \\\"updatedRows\\\": 4,\\n  \\\"updatedColumns\\\": 4,\\n  \\\"updatedCells\\\": 16\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1SzTESVEGy9dD7l7iUmAVRpLZK6C-uOfgqTYV9N_tA1U/values/%27Sheet1%27%21D4%3AA1\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 28 Oct 2023 21:44:15 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"content-length\": [\n                        \"234\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1SzTESVEGy9dD7l7iUmAVRpLZK6C-uOfgqTYV9N_tA1U?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Date\": [\n                        \"Sat, 28 Oct 2023 21:44:16 GMT\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_worksheet_notes.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_worksheet_notes\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"Content-Length\": [\n                        \"106\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Apr 2024 01:46:54 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"content-length\": [\n                        \"193\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"kind\\\": \\\"drive#file\\\",\\n  \\\"id\\\": \\\"1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE\\\",\\n  \\\"name\\\": \\\"Test WorksheetTest test_worksheet_notes\\\",\\n  \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Apr 2024 01:46:55 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"3337\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Apr 2024 01:46:56 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"3337\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Apr 2024 01:46:56 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Apr 2024 01:46:57 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"3337\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Apr 2024 01:46:57 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"69\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"sheets\\\": [\\n    {\\n      \\\"data\\\": [\\n        {}\\n      ]\\n    }\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateCells\\\": {\\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 1, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 1, \\\"sheetId\\\": 0}, \\\"fields\\\": \\\"note\\\", \\\"rows\\\": [{\\\"values\\\": [{\\\"note\\\": \\\"slim shaddy\\\"}]}]}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"Content-Length\": [\n                        \"207\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Apr 2024 01:46:57 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Apr 2024 01:46:58 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"259\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateCells\\\": {\\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 1, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 1, \\\"sheetId\\\": 0}, \\\"fields\\\": \\\"note\\\", \\\"rows\\\": [{\\\"values\\\": [{\\\"note\\\": \\\"the real slim shaddy\\\"}]}]}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"Content-Length\": [\n                        \"216\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Apr 2024 01:46:58 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Apr 2024 01:46:59 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"268\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateCells\\\": {\\\"range\\\": {\\\"startRowIndex\\\": 0, \\\"endRowIndex\\\": 1, \\\"startColumnIndex\\\": 0, \\\"endColumnIndex\\\": 1, \\\"sheetId\\\": 0}, \\\"fields\\\": \\\"note\\\", \\\"rows\\\": [{\\\"values\\\": [{\\\"note\\\": \\\"\\\"}]}]}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"Content-Length\": [\n                        \"196\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Apr 2024 01:46:59 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Apr 2024 01:46:59 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"69\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"sheets\\\": [\\n    {\\n      \\\"data\\\": [\\n        {}\\n      ]\\n    }\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE:batchUpdate\",\n                \"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\\\"}]}]}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"Content-Length\": [\n                        \"398\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Apr 2024 01:47:00 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"105\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE\\\",\\n  \\\"replies\\\": [\\n    {},\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Apr 2024 01:47:00 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"260\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?ranges=%27Sheet1%27%21B2&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Apr 2024 01:47:01 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"256\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE:batchUpdate\",\n                \"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\\\"}]}]}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"Content-Length\": [\n                        \"415\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Apr 2024 01:47:02 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"105\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE\\\",\\n  \\\"replies\\\": [\\n    {},\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Apr 2024 01:47:02 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"273\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?ranges=%27Sheet1%27%21B2&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Apr 2024 01:47:02 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"260\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE:batchUpdate\",\n                \"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\\\": \\\"\\\"}]}]}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"Content-Length\": [\n                        \"378\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Apr 2024 01:47:03 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"105\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE\\\",\\n  \\\"replies\\\": [\\n    {},\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Apr 2024 01:47:04 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"69\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"sheets\\\": [\\n    {\\n      \\\"data\\\": [\\n        {}\\n      ]\\n    }\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?ranges=%27Sheet1%27%21B2&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Apr 2024 01:47:04 GMT\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"content-length\": [\n                        \"69\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"sheets\\\": [\\n    {\\n      \\\"data\\\": [\\n        {}\\n      ]\\n    }\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1QMiHtlQul7H0d0ckHZcIs9cgfmVbd5k84i9rOhzfrVE?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-allowed-locations\": [\n                        \"0x0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 30 Apr 2024 01:47:05 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cassettes/WorksheetTest.test_worksheet_update_index.json",
    "content": "{\n    \"version\": 1,\n    \"interactions\": [\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_worksheet_update_index\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"113\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:57 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"200\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:57 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3344\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:57 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"210\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:58 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3344\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:58 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addSheet\\\": {\\\"properties\\\": {\\\"title\\\": \\\"test_sheet\\\", \\\"sheetType\\\": \\\"GRID\\\", \\\"gridProperties\\\": {\\\"rowCount\\\": 100, \\\"columnCount\\\": 100}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"147\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:58 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"384\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addSheet\\\": {\\\"properties\\\": {\\\"title\\\": \\\"test_sheet 2\\\", \\\"sheetType\\\": \\\"GRID\\\", \\\"gridProperties\\\": {\\\"rowCount\\\": 100, \\\"columnCount\\\": 100}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"149\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:58 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"386\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:59 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3840\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 905329856, \\\"index\\\": 0}, \\\"fields\\\": \\\"index\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"112\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:59 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:46:59 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"content-length\": [\n                        \"3840\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"x-goog-api-client\": [\n                        \"cred-type/sa\"\n                    ],\n                    \"x-identity-trust-boundary\": [\n                        \"0\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"Date\": [\n                        \"Tue, 25 Jul 2023 15:47:00 GMT\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files?supportsAllDrives=True\",\n                \"body\": \"{\\\"name\\\": \\\"Test WorksheetTest test_worksheet_update_index\\\", \\\"mimeType\\\": \\\"application/vnd.google-apps.spreadsheet\\\"}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"113\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:23:08 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ],\n                    \"content-length\": [\n                        \"200\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:23:09 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3344\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:23:09 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3344\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U/values/%27Sheet1%27:clear\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:23:10 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"107\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U\\\",\\n  \\\"clearedRange\\\": \\\"Sheet1!A1:Z1000\\\"\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addSheet\\\": {\\\"properties\\\": {\\\"title\\\": \\\"test_sheet\\\", \\\"sheetType\\\": \\\"GRID\\\", \\\"gridProperties\\\": {\\\"rowCount\\\": 100, \\\"columnCount\\\": 100}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"147\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:23:11 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"384\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"addSheet\\\": {\\\"properties\\\": {\\\"title\\\": \\\"test_sheet 2\\\", \\\"sheetType\\\": \\\"GRID\\\", \\\"gridProperties\\\": {\\\"rowCount\\\": 100, \\\"columnCount\\\": 100}}}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"149\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:23:11 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"387\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"x-l2-request-path\": [\n                        \"l2-managed-6\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:23:11 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3841\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"POST\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U:batchUpdate\",\n                \"body\": \"{\\\"requests\\\": [{\\\"updateSheetProperties\\\": {\\\"properties\\\": {\\\"sheetId\\\": 1420284403, \\\"index\\\": 0}, \\\"fields\\\": \\\"index\\\"}}]}\",\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"113\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:23:12 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"97\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"{\\n  \\\"spreadsheetId\\\": \\\"1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U\\\",\\n  \\\"replies\\\": [\\n    {}\\n  ]\\n}\\n\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"GET\",\n                \"uri\": \"https://sheets.googleapis.com/v4/spreadsheets/1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U?includeGridData=false\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 200,\n                    \"message\": \"OK\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"application/json; charset=UTF-8\"\n                    ],\n                    \"Cache-Control\": [\n                        \"private\"\n                    ],\n                    \"Transfer-Encoding\": [\n                        \"chunked\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:23:12 GMT\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin\",\n                        \"X-Origin\",\n                        \"Referer\"\n                    ],\n                    \"content-length\": [\n                        \"3841\"\n                    ]\n                },\n                \"body\": {\n                    \"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\"\n                }\n            }\n        },\n        {\n            \"request\": {\n                \"method\": \"DELETE\",\n                \"uri\": \"https://www.googleapis.com/drive/v3/files/1VUBpingnbp4eU-8Qsr4msxdKPEVlrab2Jz-vkT9m38U?supportsAllDrives=True\",\n                \"body\": null,\n                \"headers\": {\n                    \"User-Agent\": [\n                        \"python-requests/2.31.0\"\n                    ],\n                    \"Accept-Encoding\": [\n                        \"gzip, deflate\"\n                    ],\n                    \"Accept\": [\n                        \"*/*\"\n                    ],\n                    \"Connection\": [\n                        \"keep-alive\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"authorization\": [\n                        \"<ACCESS_TOKEN>\"\n                    ]\n                }\n            },\n            \"response\": {\n                \"status\": {\n                    \"code\": 204,\n                    \"message\": \"No Content\"\n                },\n                \"headers\": {\n                    \"X-XSS-Protection\": [\n                        \"0\"\n                    ],\n                    \"X-Frame-Options\": [\n                        \"SAMEORIGIN\"\n                    ],\n                    \"X-Content-Type-Options\": [\n                        \"nosniff\"\n                    ],\n                    \"Content-Type\": [\n                        \"text/html\"\n                    ],\n                    \"Cache-Control\": [\n                        \"no-cache, no-store, max-age=0, must-revalidate\"\n                    ],\n                    \"Alt-Svc\": [\n                        \"h3=\\\":443\\\"; ma=2592000,h3-29=\\\":443\\\"; ma=2592000\"\n                    ],\n                    \"Pragma\": [\n                        \"no-cache\"\n                    ],\n                    \"Date\": [\n                        \"Wed, 06 Sep 2023 21:23:13 GMT\"\n                    ],\n                    \"Expires\": [\n                        \"Mon, 01 Jan 1990 00:00:00 GMT\"\n                    ],\n                    \"Content-Length\": [\n                        \"0\"\n                    ],\n                    \"Server\": [\n                        \"ESF\"\n                    ],\n                    \"Vary\": [\n                        \"Origin, X-Origin\"\n                    ]\n                },\n                \"body\": {\n                    \"string\": \"\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "tests/cell_test.py",
    "content": "from typing import Generator\n\nimport pytest\nfrom pytest import FixtureRequest\n\nimport gspread\nfrom gspread.client import Client\nfrom gspread.spreadsheet import Spreadsheet\nfrom gspread.worksheet import Worksheet\n\nfrom .conftest import GspreadTest\n\n\nclass CellTest(GspreadTest):\n    \"\"\"Test for gspread.Cell.\"\"\"\n\n    spreadsheet: Spreadsheet\n    sheet: Worksheet\n\n    @pytest.fixture(scope=\"function\", autouse=True)\n    def init(\n        self: \"CellTest\", client: Client, request: FixtureRequest\n    ) -> Generator[None, None, None]:\n        # User current test name in spreadsheet name\n        name = self.get_temporary_spreadsheet_title(request.node.name)\n        CellTest.spreadsheet = client.create(name)\n        CellTest.sheet = CellTest.spreadsheet.sheet1\n\n        yield\n\n        client.del_spreadsheet(CellTest.spreadsheet.id)\n\n    @pytest.mark.vcr()\n    def test_properties(self):\n        sg = self._sequence_generator()\n        update_value = next(sg)\n        self.sheet.update_acell(\"A1\", update_value)\n        cell = self.sheet.acell(\"A1\")\n        self.assertEqual(cell.value, update_value)\n        self.assertEqual(cell.row, 1)\n        self.assertEqual(cell.col, 1)\n\n    @pytest.mark.vcr()\n    def test_equality(self):\n        sg = self._sequence_generator()\n        update_value = next(sg)\n        self.sheet.update_acell(\"A1\", update_value)\n        cell = self.sheet.acell(\"A1\")\n        same_cell = self.sheet.cell(1, 1)\n        self.assertEqual(cell, same_cell)\n        self.sheet.update_acell(\"A2\", update_value)\n        another_cell = self.sheet.acell(\"A2\")\n        self.assertNotEqual(cell, another_cell)\n        self.sheet.update_acell(\"B1\", update_value)\n        another_cell = self.sheet.acell(\"B1\")\n        self.assertNotEqual(cell, another_cell)\n\n    @pytest.mark.vcr()\n    def test_numeric_value(self):\n        numeric_value = 1.0 / 1024\n        # Use a formula here to avoid issues with differing decimal marks:\n        self.sheet.update_acell(\"A1\", \"= 1 / 1024\")\n        cell = self.sheet.acell(\"A1\")\n        self.assertEqual(cell.numeric_value, numeric_value)\n        self.assertIsInstance(cell.numeric_value, float)\n\n        # test value for popular format with long numbers\n        numeric_value = 2000000.01\n        self.sheet.update_acell(\"A1\", \"2,000,000.01\")\n        cell = self.sheet.acell(\"A1\")\n        self.assertEqual(cell.numeric_value, numeric_value)\n        self.assertIsInstance(cell.numeric_value, float)\n\n        # test non numeric value\n        self.sheet.update_acell(\"A1\", \"Non-numeric value\")\n        cell = self.sheet.acell(\"A1\")\n        self.assertEqual(cell.numeric_value, None)\n\n    @pytest.mark.vcr()\n    def test_a1_value(self):\n        cell = self.sheet.cell(4, 4)\n        self.assertEqual(cell.address, \"D4\")\n        self.sheet.update_acell(\"B1\", \"Dummy\")\n        result = self.sheet.find(\"Dummy\")\n        if result is None:\n            self.fail(\"did not find cell with matching text 'Dummy'\")\n        else:\n            cell = result\n\n        self.assertEqual(cell.address, \"B1\")\n        self.assertEqual(cell.value, \"Dummy\")\n        cell = gspread.cell.Cell(1, 2, \"Foo Bar\")\n        self.assertEqual(cell.address, \"B1\")\n        cell = gspread.cell.Cell.from_address(\"A1\", \"Foo Bar\")\n        self.assertEqual(cell.address, \"A1\")\n        self.assertEqual(cell.value, \"Foo Bar\")\n        self.assertEqual((cell.row, cell.col), (1, 1))\n\n    @pytest.mark.vcr()\n    def test_merge_cells(self):\n        self.sheet.update([[42, 43], [43, 44]], \"A1:B2\")\n\n        # test merge rows\n        self.sheet.merge_cells(1, 1, 2, 2, merge_type=\"MERGE_ROWS\")\n        merges = self.sheet._get_sheet_property(\"merges\", [])\n        self.assertEqual(len(merges), 2)\n\n        # test merge all\n        self.sheet.merge_cells(1, 1, 2, 2)\n\n        merges = self.sheet._get_sheet_property(\"merges\", [])\n        self.assertEqual(len(merges), 1)\n\n        self.sheet.unmerge_cells(1, 1, 2, 2)\n        merges = self.sheet._get_sheet_property(\"merges\", [])\n        self.assertEqual(len(merges), 0)\n\n    @pytest.mark.vcr()\n    def test_define_named_range(self):\n        # define the named range\n        range_name = \"TestDefineNamedRange\"\n        self.sheet.define_named_range(\"A1:B2\", range_name)\n\n        # get the ranges from the metadata\n        named_range_dict = self.spreadsheet.fetch_sheet_metadata(\n            params={\"fields\": \"namedRanges\"}\n        )\n\n        # make sure that a range was returned and it has the namedRanges key,\n        #  also that the dict contains a single range\n        self.assertNotEqual(named_range_dict, {})\n        self.assertIn(\"namedRanges\", named_range_dict)\n        self.assertTrue(len(named_range_dict[\"namedRanges\"]) == 1)\n\n        named_range = named_range_dict[\"namedRanges\"][0]\n\n        # ensure all of the properties of the named range match what we expect\n        self.assertEqual(named_range[\"name\"], range_name)\n        self.assertEqual(named_range[\"range\"][\"startRowIndex\"], 0)\n        self.assertEqual(named_range[\"range\"][\"endRowIndex\"], 2)\n        self.assertEqual(named_range[\"range\"][\"startColumnIndex\"], 0)\n        self.assertEqual(named_range[\"range\"][\"endColumnIndex\"], 2)\n\n        # clean up the named range\n        self.sheet.delete_named_range(named_range[\"namedRangeId\"])\n\n        # ensure the range has been deleted\n        named_range_dict = self.spreadsheet.fetch_sheet_metadata(\n            params={\"fields\": \"namedRanges\"}\n        )\n\n        self.assertEqual(named_range_dict, {})\n\n        # Add the same range but with index based coordinates\n        self.sheet.define_named_range(1, 1, 2, 2, range_name)\n\n        # Check the created named range\n        named_range_dict = self.spreadsheet.fetch_sheet_metadata(\n            params={\"fields\": \"namedRanges\"}\n        )\n\n        # make sure that a range was returned and it has the namedRanges key,\n        #  also that the dict contains a single range\n        self.assertNotEqual(named_range_dict, {})\n        self.assertIn(\"namedRanges\", named_range_dict)\n        self.assertTrue(len(named_range_dict[\"namedRanges\"]) == 1)\n\n        named_range = named_range_dict[\"namedRanges\"][0]\n\n        # ensure all of the properties of the named range match what we expect\n        self.assertEqual(named_range[\"name\"], range_name)\n        self.assertEqual(named_range[\"range\"][\"startRowIndex\"], 0)\n        self.assertEqual(named_range[\"range\"][\"endRowIndex\"], 2)\n        self.assertEqual(named_range[\"range\"][\"startColumnIndex\"], 0)\n        self.assertEqual(named_range[\"range\"][\"endColumnIndex\"], 2)\n\n    @pytest.mark.vcr()\n    def test_delete_named_range(self):\n        # define a named range\n        result = self.sheet.define_named_range(\"A1:B2\", \"TestDeleteNamedRange\")\n\n        # from the result, get the named range we just created\n        named_range_id = result[\"replies\"][0][\"addNamedRange\"][\"namedRange\"][\n            \"namedRangeId\"\n        ]\n\n        self.sheet.delete_named_range(named_range_id)\n\n        # get the ranges from the metadata\n        named_range_dict = self.spreadsheet.fetch_sheet_metadata(\n            params={\"fields\": \"namedRanges\"}\n        )\n\n        # make sure that no ranges were returned\n        self.assertEqual(named_range_dict, {})\n"
  },
  {
    "path": "tests/client_test.py",
    "content": "import time\nfrom typing import Generator\n\nimport pytest\nfrom pytest import FixtureRequest\n\nimport gspread\nfrom gspread.client import Client\nfrom gspread.spreadsheet import Spreadsheet\n\nfrom .conftest import GspreadTest\n\n\nclass ClientTest(GspreadTest):\n    \"\"\"Test for gspread.client.\"\"\"\n\n    gc: Client\n    spreadsheet: Spreadsheet\n\n    @pytest.fixture(scope=\"function\", autouse=True)\n    def init(\n        self: \"ClientTest\", client: Client, request: FixtureRequest\n    ) -> Generator[None, None, None]:\n        ClientTest.gc = client\n        name = self.get_temporary_spreadsheet_title(request.node.name)\n        ClientTest.spreadsheet = client.create(name)\n\n        yield\n\n        client.del_spreadsheet(ClientTest.spreadsheet.id)\n\n    @pytest.mark.vcr()\n    def test_no_found_exeption(self):\n        noexistent_title = \"Please don't use this phrase as a name of a sheet.\"\n        self.assertRaises(gspread.SpreadsheetNotFound, self.gc.open, noexistent_title)\n\n    @pytest.mark.vcr()\n    def test_list_spreadsheet_files(self):\n        res = self.gc.list_spreadsheet_files()\n        self.assertIsInstance(res, list)\n        for f in res:\n            self.assertIsInstance(f, dict)\n            self.assertIn(\"id\", f)\n            self.assertIn(\"name\", f)\n            self.assertIn(\"createdTime\", f)\n            self.assertIn(\"modifiedTime\", f)\n\n    @pytest.mark.vcr()\n    def test_openall(self):\n        spreadsheet_list = self.gc.openall()\n        spreadsheet_list2 = self.gc.openall(spreadsheet_list[0].title)\n\n        self.assertTrue(len(spreadsheet_list2) < len(spreadsheet_list))\n        for s in spreadsheet_list:\n            self.assertIsInstance(s, gspread.Spreadsheet)\n        for s in spreadsheet_list2:\n            self.assertIsInstance(s, gspread.Spreadsheet)\n\n    @pytest.mark.vcr()\n    def test_create(self):\n        title = \"Test Spreadsheet\"\n        new_spreadsheet = self.gc.create(title)\n        self.assertIsInstance(new_spreadsheet, gspread.Spreadsheet)\n\n    @pytest.mark.vcr()\n    def test_copy(self):\n        original_spreadsheet = self.spreadsheet\n        spreadsheet_copy = self.gc.copy(original_spreadsheet.id)\n        self.assertIsInstance(spreadsheet_copy, gspread.Spreadsheet)\n\n        original_metadata = original_spreadsheet.fetch_sheet_metadata()\n        copy_metadata = spreadsheet_copy.fetch_sheet_metadata()\n        self.assertEqual(original_metadata[\"sheets\"], copy_metadata[\"sheets\"])\n\n    @pytest.mark.vcr()\n    def test_import_csv(self):\n        spreadsheet = self.spreadsheet\n\n        sg = self._sequence_generator()\n\n        csv_rows = 4\n        csv_cols = 4\n\n        rows = [[next(sg) for j in range(csv_cols)] for i in range(csv_rows)]\n\n        simple_csv_data = \"\\n\".join([\",\".join(row) for row in rows])\n\n        self.gc.import_csv(spreadsheet.id, simple_csv_data)\n\n        sh = self.gc.open_by_key(spreadsheet.id)\n        self.assertEqual(sh.sheet1.get_all_values(), rows)\n\n    @pytest.mark.vcr()\n    def test_access_non_existing_spreadsheet(self):\n        with self.assertRaises(gspread.exceptions.SpreadsheetNotFound):\n            self.gc.open_by_key(\"test\")\n        with self.assertRaises(gspread.exceptions.SpreadsheetNotFound):\n            self.gc.open_by_url(\"https://docs.google.com/spreadsheets/d/test\")\n\n    @pytest.mark.vcr()\n    def test_open_all_has_metadata(self):\n        \"\"\"tests all spreadsheets are opened\n        and that they all have metadata\"\"\"\n        spreadsheets = self.gc.openall()\n        for spreadsheet in spreadsheets:\n            self.assertIsInstance(spreadsheet, gspread.Spreadsheet)\n            # has properties that are not from Drive API (i.e., not title, id, creationTime)\n            self.assertTrue(spreadsheet.locale)\n            self.assertTrue(spreadsheet.timezone)\n\n    @pytest.mark.vcr()\n    def test_open_by_key_has_metadata(self):\n        \"\"\"tests open_by_key has metadata\"\"\"\n        spreadsheet = self.gc.open_by_key(self.spreadsheet.id)\n        self.assertIsInstance(spreadsheet, gspread.Spreadsheet)\n        # has properties that are not from Drive API (i.e., not title, id, creationTime)\n        self.assertTrue(spreadsheet.locale)\n        self.assertTrue(spreadsheet.timezone)\n\n    @pytest.mark.vcr()\n    def test_open_by_name_has_metadata(self):\n        \"\"\"tests open has metadata\"\"\"\n        spreadsheet = self.gc.open(self.spreadsheet.title)\n        self.assertIsInstance(spreadsheet, gspread.Spreadsheet)\n        # has properties that are not from Drive API (i.e., not title, id, creationTime)\n        self.assertTrue(spreadsheet.locale)\n        self.assertTrue(spreadsheet.timezone)\n\n    @pytest.mark.vcr()\n    def test_access_private_spreadsheet(self):\n        \"\"\"tests that opening private spreadsheet returns SpreadsheetPermissionDenied\"\"\"\n        private_id = \"1jIKzPs8LsiZZdLdeMEP-5ZIHw6RkjiOmj1LrJN706Yc\"\n        with self.assertRaises(PermissionError):\n            self.gc.open_by_key(private_id)\n\n    @pytest.mark.vcr()\n    def test_client_export_spreadsheet(self):\n        \"\"\"Test the export feature of a spreadsheet.\n\n        JSON cannot serialize binary data (like PDF or OpenSpreadsheetFormat)\n        Export to CSV text format only\n        \"\"\"\n\n        values = [\n            [\"a1\", \"B2\"],\n        ]\n        self.spreadsheet.sheet1.update(\n            values=values,\n            range_name=\"A1:B2\",\n        )\n\n        res = self.gc.export(self.spreadsheet.id, gspread.utils.ExportFormat.CSV)\n\n        res_values = bytes(res).decode(\"utf-8\").strip(\"'\").split(\",\")\n\n        self.assertEqual(\n            values[0], res_values, \"exported values are not the value initially set\"\n        )\n\n    @pytest.mark.vcr()\n    def test_add_timeout(self):\n        \"\"\"Test the method to set the HTTP request timeout\"\"\"\n\n        # So far it took 0.17 seconds to fetch the metadata with my connection.\n        # Once recorded it takes 0.001 seconds to run it, so 1 second should be a large enough value\n        timeout = 1\n        self.gc.set_timeout(timeout)\n        start = time.time()\n        self.spreadsheet.fetch_sheet_metadata()\n        end = time.time()\n\n        self.assertLessEqual(\n            end - start, timeout, \"Request took longer than the set timeout value\"\n        )\n"
  },
  {
    "path": "tests/conftest.py",
    "content": "import io\nimport itertools\nimport os\nimport unittest\nfrom typing import Any, Dict, Generator, Optional, Tuple\n\nimport pytest\nfrom google.auth.credentials import Credentials\nfrom google.oauth2.credentials import Credentials as UserCredentials\nfrom google.oauth2.service_account import Credentials as ServiceAccountCredentials\nfrom requests import Response\nfrom vcr import VCR\nfrom vcr.errors import CannotOverwriteExistingCassetteException\n\nimport gspread\nfrom gspread.client import Client\nfrom gspread.http_client import BackOffHTTPClient\n\nCREDS_FILENAME = os.getenv(\"GS_CREDS_FILENAME\")\nRECORD_MODE = os.getenv(\"GS_RECORD_MODE\", \"none\")\n\nSCOPE = [\n    \"https://spreadsheets.google.com/feeds\",\n    \"https://www.googleapis.com/auth/drive.file\",\n]\nDUMMY_ACCESS_TOKEN = \"<ACCESS_TOKEN>\"\n\nI18N_STR = \"Iñtërnâtiônàlizætiøn\"  # .encode('utf8')\n\n\ndef read_credentials(filename: str) -> Credentials:\n    return ServiceAccountCredentials.from_service_account_file(filename, scopes=SCOPE)\n\n\ndef prefixed_counter(prefix: str, start: int = 1) -> Generator[str, None, None]:\n    c = itertools.count(start)\n    for value in c:\n        yield \"{} {}\".format(prefix, value)\n\n\ndef get_method_name(self_id: str) -> str:\n    return self_id.split(\".\")[-1]\n\n\ndef ignore_retry_requests(\n    response: Dict[str, Dict[str, int]]\n) -> Optional[Dict[str, Dict[str, int]]]:\n    SKIP_RECORD = [408, 429]\n    if response[\"status\"][\"code\"] in SKIP_RECORD:\n        return None  # do not record\n\n    return response\n\n\n@pytest.fixture(scope=\"module\")\ndef vcr_config():\n    return {\n        \"match_on\": [\"uri\", \"method\"],  # match each query using the uri and the method\n        \"decode_compressed_response\": True,  # decode requests to save clear content\n        \"record_mode\": RECORD_MODE,\n        \"serializer\": \"json\",\n        \"path_transformer\": VCR.ensure_suffix(\".json\"),\n        \"before_record_response\": ignore_retry_requests,\n        \"ignore_hosts\": [\n            \"oauth2.googleapis.com\",  # skip oauth requests, in replay mode we don't use them\n        ],\n        \"filter_headers\": [\n            (\"authorization\", DUMMY_ACCESS_TOKEN)  # hide token from the recording\n        ],\n    }\n\n\nclass DummyCredentials(UserCredentials):\n    pass\n\n\nclass GspreadTest(unittest.TestCase):\n    @classmethod\n    def get_temporary_spreadsheet_title(cls, suffix: str = \"\") -> str:\n        return \"Test {} {}\".format(cls.__name__, suffix)\n\n    @classmethod\n    def get_cassette_name(cls) -> str:\n        return cls.__name__\n\n    def _sequence_generator(self) -> Generator[str, None, None]:\n        return prefixed_counter(get_method_name(self.id()))\n\n\nclass VCRHTTPClient(BackOffHTTPClient):\n    def request(self, *args: Any, **kwargs: Any) -> Response:\n        try:\n            return super().request(*args, **kwargs)\n        except CannotOverwriteExistingCassetteException as e:\n            if CREDS_FILENAME is None or RECORD_MODE is None:\n                raise RuntimeError(\n                    \"\"\"\n\ncannot make new HTTP requests in replay-mode. Please run tests with env variables CREDS_FILENAME and RECORD_MODE\nPlease refer to contributing guide for details:\n\nhttps://github.com/burnash/gspread/blob/master/.github/CONTRIBUTING.md\n\"\"\"\n                )\n\n            # necessary env variables were provided, this is a real error\n            # like missing access rights on the actual file/folder where to save the cassette\n            raise e\n\n\nclass InvalidJsonApiErrorClient(VCRHTTPClient):\n    \"\"\"Special HTTP client that always raises an exception due to 500 error with\n    an invalid JSON body.\n    In this case for now it returns some HTML to simulate the use of the wrong HTTP endpoint.\n    \"\"\"\n\n    ERROR_MSG = bytes(\"<html><body><h1>Failed</h1></body></html>\", \"utf-8\")\n\n    def request(self, *args: Any, **kwargs: Any) -> Response:\n        resp = Response()\n        # fake an HTML response instead of a valid JSON response.\n        # urllib3 expect 'raw' to be bytes.\n        resp.raw = io.BytesIO(self.ERROR_MSG)\n        resp.status_code = 500\n        resp.encoding = \"text/html\"\n\n        # now raise the APIError exception as the regular HTTP client would\n        raise gspread.exceptions.APIError(resp)\n\n\n@pytest.fixture(scope=\"module\")\ndef client() -> Client:\n    if CREDS_FILENAME is not None:\n        auth_credentials = read_credentials(CREDS_FILENAME)\n    else:\n        auth_credentials = DummyCredentials(DUMMY_ACCESS_TOKEN)\n\n    gc = Client(auth=auth_credentials, http_client=VCRHTTPClient)\n    if not isinstance(gc, gspread.client.Client) is True:\n        raise AssertionError\n\n    return gc\n\n\ndef invalid_json_client() -> Tuple[Client, bytes]:\n    \"\"\"Returns an HTTP client that always returns an invalid JSON payload\n    and the expected error message from the raised exception.\n    \"\"\"\n    return (\n        Client(\n            auth=DummyCredentials(DUMMY_ACCESS_TOKEN),\n            http_client=InvalidJsonApiErrorClient,\n        ),\n        InvalidJsonApiErrorClient.ERROR_MSG,\n    )\n"
  },
  {
    "path": "tests/spreadsheet_test.py",
    "content": "import re\nimport time\n\nimport pytest\n\nimport gspread\n\nfrom .conftest import GspreadTest, invalid_json_client\n\n\nclass SpreadsheetTest(GspreadTest):\n    \"\"\"Test for gspread.Spreadsheet.\"\"\"\n\n    @pytest.fixture(scope=\"function\", autouse=True)\n    def init(self, client, request):\n        name = self.get_temporary_spreadsheet_title(request.node.name)\n        SpreadsheetTest.spreadsheet = client.create(name)\n\n        yield\n\n        client.del_spreadsheet(SpreadsheetTest.spreadsheet.id)\n\n    @pytest.mark.vcr()\n    def test_bad_json_api_error(self):\n        # no need to pass auth tokens we use a custom HTTP Client that always fail\n        bad_client, error_msg = invalid_json_client()\n\n        with pytest.raises(gspread.exceptions.APIError) as e:\n            bad_client.get_file_drive_metadata(\"abcdef0123456789\")\n\n        self.assertTrue(e.match(error_msg.decode()))\n\n    @pytest.mark.vcr()\n    def test_properties(self):\n        self.assertTrue(re.match(r\"^[a-zA-Z0-9-_]+$\", self.spreadsheet.id))\n        self.assertTrue(len(self.spreadsheet.title) > 0)\n\n    @pytest.mark.vcr()\n    def test_sheet1(self):\n        sheet1 = self.spreadsheet.sheet1\n        self.assertIsInstance(sheet1, gspread.Worksheet)\n\n    @pytest.mark.vcr()\n    def test_get_worksheet(self):\n        sheet1 = self.spreadsheet.get_worksheet(0)\n        self.assertIsInstance(sheet1, gspread.Worksheet)\n\n    @pytest.mark.vcr()\n    def test_get_worksheet_by_id(self):\n        sheet1_by_int = self.spreadsheet.get_worksheet_by_id(0)\n        sheet1_by_str = self.spreadsheet.get_worksheet_by_id(\"0\")\n        self.assertIsInstance(sheet1_by_int, gspread.Worksheet)\n        self.assertIsInstance(sheet1_by_str, gspread.Worksheet)\n\n    @pytest.mark.vcr()\n    def test_worksheet(self):\n        sheet_title = \"Sheet1\"\n        sheet = self.spreadsheet.worksheet(sheet_title)\n        self.assertIsInstance(sheet, gspread.Worksheet)\n\n    @pytest.mark.vcr()\n    def test_worksheets(self):\n        n_worksheets_before = len(self.spreadsheet.worksheets())\n\n        self.spreadsheet.add_worksheet(\"finances\", 100, 100)\n\n        n_worksheets_after = len(self.spreadsheet.worksheets())\n\n        self.assertEqual(n_worksheets_before, 1)\n        self.assertEqual(n_worksheets_after, 2)\n\n    @pytest.mark.vcr()\n    def test_worksheets_exclude_hidden(self):\n        self.spreadsheet.add_worksheet(\"finances\", 100, 100)\n        gacha_worksheet = self.spreadsheet.add_worksheet(\"gacha\", 100, 100)\n        gacha_worksheet.hide()\n\n        n_worksheets_and_hidden = len(self.spreadsheet.worksheets(exclude_hidden=False))\n        n_worksheets_no_hidden = len(self.spreadsheet.worksheets(exclude_hidden=True))\n\n        self.assertEqual(n_worksheets_and_hidden, 3)\n        self.assertEqual(n_worksheets_no_hidden, 2)\n\n    @pytest.mark.vcr()\n    def test_worksheet_iteration(self):\n        self.assertEqual(\n            [x.id for x in self.spreadsheet.worksheets()],\n            [sheet.id for sheet in self.spreadsheet],\n        )\n\n    @pytest.mark.vcr()\n    def test_values_get(self):\n        sg = self._sequence_generator()\n\n        worksheet1_name = \"{} {}\".format(\"🌵\", next(sg))\n\n        worksheet = self.spreadsheet.add_worksheet(worksheet1_name, 10, 10)\n\n        range_label = \"{}!{}\".format(worksheet1_name, \"A1\")\n\n        values = [[\"🍇\", \"🍉\", \"🍋\"], [\"🍐\", \"🍎\", \"🍓\"]]\n\n        self.spreadsheet.values_update(\n            range_label, params={\"valueInputOption\": \"RAW\"}, body={\"values\": values}\n        )\n\n        read_data = self.spreadsheet.values_get(worksheet1_name)\n\n        self.assertEqual(values, read_data[\"values\"])\n        self.spreadsheet.del_worksheet(worksheet)\n\n    @pytest.mark.vcr()\n    def test_add_del_worksheet(self):\n        sg = self._sequence_generator()\n        worksheet1_name = next(sg)\n        worksheet2_name = next(sg)\n        worksheet3_name = next(sg)\n\n        worksheet_list = self.spreadsheet.worksheets()\n        self.assertEqual(len(worksheet_list), 1)\n        existing_sheet_title = worksheet_list[0].title\n\n        # Add\n        worksheet1 = self.spreadsheet.add_worksheet(worksheet1_name, 1, 1)\n        worksheet2 = self.spreadsheet.add_worksheet(worksheet2_name, 1, 1)\n        worksheet3 = self.spreadsheet.add_worksheet(worksheet3_name, 1, 1)\n\n        # Re-read, check again\n        worksheet_list = self.spreadsheet.worksheets()\n        self.assertEqual(len(worksheet_list), 4)\n\n        # Delete\n        self.spreadsheet.del_worksheet(worksheet1)\n        self.spreadsheet.del_worksheet_by_id(int(worksheet2.id))\n        self.spreadsheet.del_worksheet_by_id(str(worksheet3.id))\n\n        worksheet_list = self.spreadsheet.worksheets()\n        self.assertEqual(len(worksheet_list), 1)\n        self.assertEqual(worksheet_list[0].title, existing_sheet_title)\n\n    @pytest.mark.vcr()\n    def test_values_batch_get(self):\n        sg = self._sequence_generator()\n\n        worksheet1_name = \"{} {}\".format(\"🌵\", next(sg))\n\n        worksheet = self.spreadsheet.add_worksheet(worksheet1_name, 10, 10)\n\n        range_label = \"{}!{}\".format(worksheet1_name, \"A1\")\n\n        values = [[\"🍇\", \"🍉\", \"🍋\"], [\"🍐\", \"🍎\", \"🍓\"]]\n\n        self.spreadsheet.values_update(\n            range_label, params={\"valueInputOption\": \"RAW\"}, body={\"values\": values}\n        )\n        ranges = [\n            \"{}!{}:{}\".format(worksheet1_name, col, col) for col in [\"A\", \"B\", \"C\"]\n        ]\n\n        read_data = self.spreadsheet.values_batch_get(ranges)\n\n        for colix, rng in enumerate(read_data[\"valueRanges\"]):\n            for rowix, ele in enumerate(rng[\"values\"]):\n                self.assertEqual(values[rowix][colix], ele[0])\n        self.spreadsheet.del_worksheet(worksheet)\n\n    @pytest.mark.vcr()\n    def test_timezone_and_locale(self):\n        prev_timezone = self.spreadsheet.timezone\n        prev_locale = self.spreadsheet.locale\n        new_timezone = \"Europe/Paris\"\n        new_locale = \"fr_FR\"\n\n        self.spreadsheet.update_timezone(new_timezone)\n        self.spreadsheet.update_locale(new_locale)\n\n        # must fetch metadata\n        properties = self.spreadsheet.fetch_sheet_metadata()[\"properties\"]\n        timezone_prop_after = self.spreadsheet.timezone\n        locale_prop_after = self.spreadsheet.locale\n\n        self.assertNotEqual(prev_timezone, properties[\"timeZone\"])\n        self.assertNotEqual(prev_locale, properties[\"locale\"])\n\n        self.assertEqual(new_timezone, properties[\"timeZone\"])\n        self.assertEqual(new_timezone, timezone_prop_after)\n        self.assertEqual(new_locale, properties[\"locale\"])\n        self.assertEqual(new_locale, locale_prop_after)\n\n    @pytest.mark.vcr()\n    def test_update_title(self):\n        prev_title = self.spreadsheet.title\n        new_title = \"🎊 Updated Title #123 🎉\"\n\n        self.spreadsheet.update_title(new_title)\n\n        # Check whether title is updated immediately\n        self.assertNotEqual(prev_title, self.spreadsheet.title)\n        self.assertEqual(new_title, self.spreadsheet.title)\n\n        # Check whether changes persist upon re-fetching\n        properties = self.spreadsheet.fetch_sheet_metadata()[\"properties\"]\n\n        self.assertNotEqual(prev_title, properties[\"title\"])\n        self.assertEqual(new_title, properties[\"title\"])\n\n    @pytest.mark.vcr()\n    def test_get_lastUpdateTime(self):\n        \"\"\"Test get_lastUpdateTime method works\"\"\"\n        lastUpdateTime_before = self.spreadsheet.get_lastUpdateTime()\n\n        time.sleep(0.01)\n        self.spreadsheet.update_title(\"🎊 Updated Title #123 🎉\")\n\n        lastUpdateTime_after = self.spreadsheet.get_lastUpdateTime()\n\n        self.assertNotEqual(lastUpdateTime_before, lastUpdateTime_after)\n\n    @pytest.mark.vcr()\n    def test_creationTime_prop(self):\n        \"\"\"test lastUpdateTime property behaviour\"\"\"\n        creationTime = self.spreadsheet.creationTime\n        self.assertIsNotNone(creationTime)\n\n    @pytest.mark.vcr()\n    def test_export_spreadsheet(self):\n        \"\"\"Test the export feature of a spreadsheet.\n\n        JSON cannot serialize binary data (like PDF or OpenSpreadsheetFormat)\n        Export to CSV text format only\n        \"\"\"\n\n        values = [\n            [\"a1\", \"B2\"],\n        ]\n        self.spreadsheet.sheet1.update(\n            values=values,\n            range_name=\"A1:B2\",\n        )\n\n        res = self.spreadsheet.export(gspread.utils.ExportFormat.CSV)\n\n        res_values = bytes(res).decode(\"utf-8\").strip(\"'\").split(\",\")\n\n        self.assertEqual(\n            values[0], res_values, \"exported values are not the value initially set\"\n        )\n"
  },
  {
    "path": "tests/utils_test.py",
    "content": "import unittest\n\nimport gspread\nimport gspread.utils as utils\n\n\nclass UtilsTest(unittest.TestCase):\n    def test_extract_id_from_url(self):\n        url_id_list = [\n            # New-style url\n            (\n                \"https://docs.google.com/spreadsheets/d/\"\n                \"1qpyC0X3A0MwQoFDE8p-Bll4hps/edit#gid=0\",\n                \"1qpyC0X3A0MwQoFDE8p-Bll4hps\",\n            ),\n            (\n                \"https://docs.google.com/spreadsheets/d/\"\n                \"1qpyC0X3A0MwQoFDE8p-Bll4hps/edit\",\n                \"1qpyC0X3A0MwQoFDE8p-Bll4hps\",\n            ),\n            (\n                \"https://docs.google.com/spreadsheets/d/\" \"1qpyC0X3A0MwQoFDE8p-Bll4hps\",\n                \"1qpyC0X3A0MwQoFDE8p-Bll4hps\",\n            ),\n            # Old-style url\n            (\n                \"https://docs.google.com/spreadsheet/\"\n                \"ccc?key=1qpyC0X3A0MwQoFDE8p-Bll4hps&usp=drive_web#gid=0\",\n                \"1qpyC0X3A0MwQoFDE8p-Bll4hps\",\n            ),\n        ]\n\n        for url, id in url_id_list:\n            self.assertEqual(id, utils.extract_id_from_url(url))\n\n    def test_no_extract_id_from_url(self):\n        self.assertRaises(\n            gspread.NoValidUrlKeyFound, utils.extract_id_from_url, \"http://example.org\"\n        )\n\n    def test_a1_to_rowcol(self):\n        self.assertEqual(utils.a1_to_rowcol(\"ABC3\"), (3, 731))\n\n    def test_rowcol_to_a1(self):\n        self.assertEqual(utils.rowcol_to_a1(3, 731), \"ABC3\")\n        self.assertEqual(utils.rowcol_to_a1(1, 104), \"CZ1\")\n\n    def test_addr_converters(self):\n        for row in range(1, 257):\n            for col in range(1, 512):\n                addr = utils.rowcol_to_a1(row, col)\n                (r, c) = utils.a1_to_rowcol(addr)\n                self.assertEqual((row, col), (r, c))\n\n    def test_get_gid(self):\n        gid = \"od6\"\n        self.assertEqual(utils.wid_to_gid(gid), \"0\")\n        gid = \"osyqnsz\"\n        self.assertEqual(utils.wid_to_gid(gid), \"1751403737\")\n        gid = \"ogsrar0\"\n        self.assertEqual(utils.wid_to_gid(gid), \"1015761654\")\n\n    def test_numericise(self):\n        self.assertEqual(utils.numericise(\"faa\"), \"faa\")\n        self.assertEqual(utils.numericise(\"3\"), 3)\n        self.assertEqual(utils.numericise(\"3_2\"), \"3_2\")\n        self.assertEqual(\n            utils.numericise(\"3_2\", allow_underscores_in_numeric_literals=False), \"3_2\"\n        )\n        self.assertEqual(\n            utils.numericise(\"3_2\", allow_underscores_in_numeric_literals=True), 32\n        )\n        self.assertEqual(utils.numericise(\"3.1\"), 3.1)\n        self.assertEqual(utils.numericise(\"\", empty2zero=True), 0)\n        self.assertEqual(utils.numericise(\"\", empty2zero=False), \"\")\n        self.assertEqual(utils.numericise(\"\", default_blank=None), None)\n        self.assertEqual(utils.numericise(\"\", default_blank=\"foo\"), \"foo\")\n        self.assertEqual(utils.numericise(\"\"), \"\")\n        self.assertEqual(utils.numericise(None), None)\n\n        # test numericise_all\n        inputs = [\"1\", \"2\", \"3\"]\n        expected = [1, 2, 3]\n        self.assertEqual(utils.numericise_all(inputs), expected)\n\n        # skip non digit values\n        inputs + [\"a\"]\n        expected + [\"a\"]\n        self.assertEqual(utils.numericise_all(inputs), expected)\n\n        # skip ignored columns\n        inputs + [\"5\", \"5\"]\n        expected + [\"5\", 5]\n        self.assertEqual(utils.numericise_all(inputs, ignore=[5]), expected)\n\n        # provide explicit `None` as ignored list\n        self.assertEqual(utils.numericise_all(inputs, ignore=None), expected)\n\n    def test_a1_to_grid_range_simple(self):\n        expected_single_dimension = {\n            \"startRowIndex\": 0,\n            \"endRowIndex\": 10,\n            \"startColumnIndex\": 0,\n            \"endColumnIndex\": 1,\n        }\n        actual_single_dimension = utils.a1_range_to_grid_range(\"A1:A10\")\n\n        expected_two_dimensional = {\n            \"startRowIndex\": 2,\n            \"endRowIndex\": 4,\n            \"startColumnIndex\": 0,\n            \"endColumnIndex\": 2,\n        }\n        actual_two_dimensional = utils.a1_range_to_grid_range(\"A3:B4\")\n\n        expected_with_sheet_id = {\n            \"sheetId\": 0,\n            \"startRowIndex\": 0,\n            \"endRowIndex\": 10,\n            \"startColumnIndex\": 0,\n            \"endColumnIndex\": 1,\n        }\n        actual_with_sheet_id = utils.a1_range_to_grid_range(\"A1:A10\", sheet_id=0)\n\n        self.assertEqual(actual_single_dimension, expected_single_dimension)\n        self.assertEqual(actual_two_dimensional, expected_two_dimensional)\n        self.assertEqual(actual_with_sheet_id, expected_with_sheet_id)\n\n    def test_a1_to_grid_range_unbounded(self):\n        expected_unbounded = {\n            \"startRowIndex\": 4,\n            \"startColumnIndex\": 0,\n            \"endColumnIndex\": 2,\n        }\n        actual_unbounded = utils.a1_range_to_grid_range(\"A5:B\")\n\n        expected_full_columns = {\"startColumnIndex\": 0, \"endColumnIndex\": 2}\n        actual_full_columns = utils.a1_range_to_grid_range(\"A:B\")\n\n        expected_with_sheet_id = {\n            \"sheetId\": 0,\n            \"startRowIndex\": 4,\n            \"startColumnIndex\": 0,\n            \"endColumnIndex\": 2,\n        }\n        actual_with_sheet_id = utils.a1_range_to_grid_range(\"A5:B\", sheet_id=0)\n\n        self.assertEqual(actual_unbounded, expected_unbounded)\n        self.assertEqual(actual_full_columns, expected_full_columns)\n        self.assertEqual(actual_with_sheet_id, expected_with_sheet_id)\n\n    def test_a1_to_grid_range_improper_range(self):\n        expected_single_cell = {\n            \"startRowIndex\": 0,\n            \"endRowIndex\": 1,\n            \"startColumnIndex\": 0,\n            \"endColumnIndex\": 1,\n        }\n        actual_single_cell = utils.a1_range_to_grid_range(\"A1\")\n\n        expected_single_column = {\"startColumnIndex\": 0, \"endColumnIndex\": 1}\n        actual_single_column = utils.a1_range_to_grid_range(\"A\")\n\n        expected_single_row = {\"startRowIndex\": 0, \"endRowIndex\": 1}\n        actual_single_row = utils.a1_range_to_grid_range(\"1\")\n\n        expected_with_sheet = {\n            \"sheetId\": 0,\n            \"startRowIndex\": 0,\n            \"endRowIndex\": 1,\n            \"startColumnIndex\": 0,\n            \"endColumnIndex\": 1,\n        }\n        actual_with_sheet = utils.a1_range_to_grid_range(\"A1\", sheet_id=0)\n\n        self.assertEqual(actual_single_cell, expected_single_cell)\n        self.assertEqual(actual_single_column, expected_single_column)\n        self.assertEqual(actual_single_row, expected_single_row)\n        self.assertEqual(actual_with_sheet, expected_with_sheet)\n\n    def test_a1_to_grid_range_other_directions(self):\n        from_top_left = utils.a1_range_to_grid_range(\"C2:D4\")\n        from_bottom_right = utils.a1_range_to_grid_range(\"D4:C2\")\n        from_top_right = utils.a1_range_to_grid_range(\"D2:C4\")\n        from_bottom_left = utils.a1_range_to_grid_range(\"C4:D2\")\n\n        self.assertEqual(from_top_left, from_bottom_right)\n        self.assertEqual(from_top_left, from_bottom_left)\n        self.assertEqual(from_top_left, from_top_right)\n\n    def test_column_letter_to_index(self):\n        # All the input values to test one after an other\n        # [0] input value\n        # [1] expected return value\n        # [2] expected exception to raise\n        inputs = [\n            (\"\", None, gspread.exceptions.InvalidInputValue),\n            (\"A\", 1, None),\n            (\"Z\", 26, None),\n            (\"AA\", 27, None),\n            (\"AAA\", 703, None),\n            (\"ABCDEFGHIJKLMNOPQRSTUVWXYZ\", 256094574536617744129141650397448476, None),\n            (\"!@#$%^&*()\", None, gspread.exceptions.InvalidInputValue),\n        ]\n\n        for label, expected, exception in inputs:\n            if exception is not None:\n                # assert the exception is raised\n                with self.assertRaises(exception):\n                    utils.column_letter_to_index(label)\n            else:\n                # assert the return values is correct\n                result = utils.column_letter_to_index(label)\n                self.assertEqual(\n                    result,\n                    expected,\n                    \"could not convert column letter '{}' to the right value '{}\".format(\n                        label, expected\n                    ),\n                )\n\n    def test_combine_merge_values(self):\n        sheet_data = [\n            [1, None, None, None],\n            [None, None, \"title\", None],\n            [None, None, 2, None],\n            [\"num\", \"val\", None, 0],\n        ]\n        sheet_metadata = {\n            \"properties\": {\"sheetId\": 0},\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        expected_combine = [\n            [1, 1, None, None],\n            [1, 1, \"title\", \"title\"],\n            [None, None, 2, None],\n            [\"num\", \"val\", 2, 0],\n        ]\n\n        actual_combine = utils.combined_merge_values(sheet_metadata, sheet_data, 0, 0)\n\n        self.assertEqual(actual_combine, expected_combine)\n\n    def test_convert_colors_to_hex_value(self):\n        color = {\"red\": 1, \"green\": 0.49803922, \"blue\": 0}\n        expected_hex = \"#FF7F00\"\n\n        # successful convert from colors\n        hex = utils.convert_colors_to_hex_value(**color)\n        self.assertEqual(hex, expected_hex)\n\n        # successful convert from partial input\n        hex = utils.convert_colors_to_hex_value(green=1)\n        self.assertEqual(hex, \"#00FF00\")\n\n        # throw ValueError on color values out of range (0-1)\n        with self.assertRaises(ValueError):\n            utils.convert_colors_to_hex_value(1.23, 0, -50)\n\n    def test_combine_merge_values_outside_range(self):\n        \"\"\"Make sure that merges outside the range of the sheet are ignored or partially ignored\n        see issue #1298\n        \"\"\"\n        sheet_data = [\n            [1, None, None, None],\n            [None, None, \"title\", None],\n            [None, None, 2, None],\n            [\"num\", \"val\", None, 0],\n        ]\n        sheet_metadata = {\n            \"properties\": {\"sheetId\": 0},\n            \"merges\": [\n                {\n                    \"startRowIndex\": 7,\n                    \"endRowIndex\": 9,\n                    \"startColumnIndex\": 7,\n                    \"endColumnIndex\": 9,\n                },\n                {\n                    \"startRowIndex\": 3,\n                    \"endRowIndex\": 5,\n                    \"startColumnIndex\": 1,\n                    \"endColumnIndex\": 2,\n                },\n            ],\n        }\n        expected_combine = [\n            [1, None, None, None],\n            [None, None, \"title\", None],\n            [None, None, 2, None],\n            [\"num\", \"val\", None, 0],\n        ]\n\n        actual_combine = utils.combined_merge_values(sheet_metadata, sheet_data, 0, 0)\n\n        self.assertEqual(actual_combine, expected_combine)\n\n    def test_combine_merge_values_from_centre_of_sheet(self):\n        \"\"\"Make sure that merges start from the right index when the sheet is not at the top left\n        see issue #1330\n        \"\"\"\n        sheet_data = [\n            [1, None, None, None],\n            [None, None, \"title\", None],\n            [None, None, 2, None],\n            [\"num\", \"val\", None, 0],\n        ]\n        sheet_metadata = {\n            \"properties\": {\"sheetId\": 0},\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        sheet_data_cropped = [sheet_data[1:] for sheet_data in sheet_data][1:]\n        # [None, \"title\", None],\n        # [None, 2, None],\n        # [\"val\", None, 0]\n        expected_combined_cropped = [\n            [None, \"title\", \"title\"],\n            [None, 2, None],\n            [\"val\", 2, 0],\n        ]\n\n        actual_combine = utils.combined_merge_values(\n            sheet_metadata, sheet_data_cropped, start_row_index=1, start_col_index=1\n        )\n\n        self.assertEqual(actual_combine, expected_combined_cropped)\n\n    def test_convert_hex_to_color(self):\n        hexcolor = \"#FF7F00\"\n        expected_color = {\"red\": 1, \"green\": 0.49803922, \"blue\": 0}\n\n        # successful convert from hex to color\n        rgbcolor = utils.convert_hex_to_colors_dict(hexcolor)\n        for key, rgbvalue in rgbcolor.items():\n            self.assertAlmostEqual(rgbvalue, expected_color[key])\n\n        # successful ignore alpha\n        rgbcolor = utils.convert_hex_to_colors_dict(f\"{hexcolor}42\")\n        for key, rgbvalue in rgbcolor.items():\n            self.assertAlmostEqual(rgbvalue, expected_color[key])\n\n        # raise ValueError on invalid hex length\n        with self.assertRaises(ValueError):\n            utils.convert_hex_to_colors_dict(\"123456abcdef\")\n\n        # raise ValueError on invalid hex characters\n        with self.assertRaises(ValueError):\n            utils.convert_hex_to_colors_dict(\"axbcde\")\n\n    def test_fill_gaps(self):\n        \"\"\"test fill_gaps function\"\"\"\n        matrix = [\n            [1, 2, 3, 4],\n            [5, 6, 7, 8],\n        ]\n        expected = [\n            [1, 2, 3, 4, \"\", \"\"],\n            [5, 6, 7, 8, \"\", \"\"],\n            [\"\", \"\", \"\", \"\", \"\", \"\"],\n        ]\n        actual = utils.fill_gaps(matrix, 3, 6)\n\n        self.assertEqual(actual, expected)\n\n    def test_fill_gaps_with_value(self):\n        \"\"\"test fill_gaps function\"\"\"\n        matrix = [\n            [1, 2, 3, 4],\n            [5, 6, 7, 8],\n        ]\n        expected = [\n            [1, 2, 3, 4, \"a\", \"a\"],\n            [5, 6, 7, 8, \"a\", \"a\"],\n            [\"a\", \"a\", \"a\", \"a\", \"a\", \"a\"],\n        ]\n        actual = utils.fill_gaps(matrix, 3, 6, \"a\")\n\n        self.assertEqual(actual, expected)\n\n        expected = [\n            [1, 2, 3, 4, 3, 3],\n            [5, 6, 7, 8, 3, 3],\n            [3, 3, 3, 3, 3, 3],\n        ]\n        actual = utils.fill_gaps(matrix, 3, 6, 3)\n\n        self.assertEqual(actual, expected)\n\n    def test_fill_gaps_with_non_square_array(self):\n        \"\"\"test fill_gaps function\"\"\"\n        matrix = [\n            [1, 2, 3, 4],\n            [5, 6, 7, 8],\n            [9],\n        ]\n        expected = [\n            [1, 2, 3, 4, \"\", \"\", \"\"],\n            [5, 6, 7, 8, \"\", \"\", \"\"],\n            [9, \"\", \"\", \"\", \"\", \"\", \"\"],\n            [\"\", \"\", \"\", \"\", \"\", \"\", \"\"],\n        ]\n        actual = utils.fill_gaps(matrix, 4, 7)\n\n        self.assertEqual(actual, expected)\n\n    def test_is_full_a1_notation(self):\n        \"\"\"test is_full_a1_notation function\"\"\"\n        self.assertTrue(utils.is_full_a1_notation(\"A1:B2\"))\n        self.assertTrue(utils.is_full_a1_notation(\"Sheet1!A1:B2\"))\n        self.assertTrue(utils.is_full_a1_notation(\"AZ1:BBY2\"))\n        self.assertTrue(utils.is_full_a1_notation(\"AZ142:BBY122\"))\n\n        self.assertFalse(utils.is_full_a1_notation(\"Sheet1\"))\n        self.assertFalse(utils.is_full_a1_notation(\"A:B\"))\n        self.assertFalse(utils.is_full_a1_notation(\"1:2\"))\n        self.assertFalse(utils.is_full_a1_notation(\"1:\"))\n        self.assertFalse(utils.is_full_a1_notation(\"A1\"))\n        self.assertFalse(utils.is_full_a1_notation(\"A\"))\n        self.assertFalse(utils.is_full_a1_notation(\"1\"))\n        self.assertFalse(utils.is_full_a1_notation(\"\"))\n\n    def test_get_a1_from_absolute_range(self):\n        \"\"\"test get_a1_from_absolute_range function\"\"\"\n        self.assertEqual(utils.get_a1_from_absolute_range(\"'Sheet1'!A1:B2\"), \"A1:B2\")\n        self.assertEqual(utils.get_a1_from_absolute_range(\"'Sheet1'!A1:B\"), \"A1:B\")\n        self.assertEqual(utils.get_a1_from_absolute_range(\"Sheet1!A1:B2\"), \"A1:B2\")\n        self.assertEqual(utils.get_a1_from_absolute_range(\"A1:B2\"), \"A1:B2\")\n        self.assertEqual(utils.get_a1_from_absolute_range(\"A1:B\"), \"A1:B\")\n        self.assertEqual(utils.get_a1_from_absolute_range(\"2\"), \"2\")\n\n    def test_to_records_empty_args(self):\n        \"\"\"Test to_records with empty args\"\"\"\n\n        self.assertListEqual(utils.to_records([], []), [])\n        self.assertListEqual(utils.to_records([], [[]]), [{}])\n        self.assertListEqual(utils.to_records([\"a1\", \"b2\"], []), [])\n        self.assertListEqual(utils.to_records([\"a1\", \"b2\"], [[]]), [{}])\n        self.assertListEqual(utils.to_records([], [[\"a1\"]]), [{}])\n        self.assertListEqual(utils.to_records([], [[\"a1\"], [\"a2\"]]), [{}, {}])\n        self.assertListEqual(utils.to_records([], [[], [\"a2\"]]), [{}, {}])\n\n    def test_to_records(self):\n        \"\"\"Test to_records with values\"\"\"\n\n        headers = [\"HA\", \"HB\", \"HC\"]\n        values = [[\"A2\", \"B2\", \"C2\"], [\"A3\", \"B3\"], [\"\", \"B4\", \"C4\"]]\n\n        records = utils.to_records(headers, values)\n\n        self.assertEqual(len(values), len(records))\n\n        for i in range(len(records)):\n            record = records[i]\n            keys = record.keys()\n\n            # Some rows have shorter values (\"A3\", \"B3\")\n            # so the list of keys is smaller\n            # but never bigger than the list of headers\n            self.assertLessEqual(len(keys), len(headers))\n\n            # Each resulting key must be part of the given header\n            for key in keys:\n                self.assertIn(key, headers)\n\n                # given key are unordered\n                # but they must match a value from the given input values\n                self.assertIn(record[key], values[i])\n\n    def test_find_table_simple(self):\n        \"\"\"Test find table with basic case\"\"\"\n        values = [\n            [\"A1\", \"B1\", \"C1\", \"D1\"],\n            [\"\", \"B2\", \"C2\", \"\", \"E2\"],\n            [\"\", \"B3\", \"C3\", \"D3\", \"E3\"],\n            [\"A4\", \"\", \"C4\", \"D4\", \"E4\"],\n        ]\n\n        table = utils.find_table(\n            values,\n            \"B2\",\n            utils.TableDirection.table,\n        )\n\n        table_max_row_max_column = utils.find_table(\n            values,\n            \"D3\",\n            utils.TableDirection.table,\n        )\n        right = utils.find_table(\n            values,\n            \"B2\",\n            utils.TableDirection.right,\n        )\n        down = utils.find_table(\n            values,\n            \"B2\",\n            utils.TableDirection.down,\n        )\n        single = utils.find_table(values, \"D1\", utils.TableDirection.table)\n        no_values = utils.find_table(values, \"A2\", utils.TableDirection.table)\n\n        table_values = [\n            [\"B2\", \"C2\"],\n            [\"B3\", \"C3\"],\n        ]\n\n        for rowindex, row in enumerate(table_values):\n            self.assertListEqual(row, table[rowindex])\n\n        table_max_row_max_column_values = [\n            [\"D3\", \"E3\"],\n            [\"D4\", \"E4\"],\n        ]\n\n        for rowindex, row in enumerate(table_max_row_max_column):\n            self.assertListEqual(row, table_max_row_max_column_values[rowindex])\n\n        right_values = [\n            [\"B2\", \"C2\"],\n        ]\n        for rowindex, row in enumerate(right_values):\n            self.assertListEqual(row, right[rowindex])\n\n        bottom_values = [\n            [\"B2\"],\n            [\"B3\"],\n        ]\n        for rowindex, row in enumerate(bottom_values):\n            self.assertListEqual(row, down[rowindex])\n\n        self.assertEqual(len(single), 1)\n        self.assertEqual(len(single[0]), 1)\n        self.assertEqual(single[0][0], \"D1\")\n        self.assertEqual(no_values, [])\n\n    def test_find_table_inner_gap(self):\n        \"\"\"Test find table with gap in header\"\"\"\n        values = [\n            [\"A1\", \"B1\", \"C1\", \"\"],\n            [\"A2\", \"\", \"C2\", \"\"],\n            [\"A3\", \"B3\", \"C3\", \"\"],\n            [\"\", \"\", \"\", \"\"],\n        ]\n        expected_table = [\n            [\"A1\", \"B1\", \"C1\"],\n            [\"A2\", \"\", \"C2\"],\n            [\"A3\", \"B3\", \"C3\"],\n        ]\n\n        table = utils.find_table(\n            values,\n            \"A1\",\n            utils.TableDirection.table,\n        )\n\n        for rowindex, row in enumerate(expected_table):\n            self.assertListEqual(row, table[rowindex])\n\n    def test_find_table_first_row_gap(self):\n        \"\"\"Test find table with first cell empty\"\"\"\n        values = [\n            [\"A1\", \"\", \"C1\", \"\"],\n            [\"A2\", \"B2\", \"C2\", \"\"],\n            [\"A3\", \"B3\", \"C3\", \"\"],\n            [\"\", \"\", \"\", \"\"],\n        ]\n        expected_table = [\n            [\"A1\"],\n            [\"A2\"],\n            [\"A3\"],\n        ]\n\n        table = utils.find_table(\n            values,\n            \"A1\",\n            utils.TableDirection.table,\n        )\n\n        for rowindex, row in enumerate(expected_table):\n            self.assertListEqual(row, table[rowindex])\n\n    def test_find_table_first_column_gap(self):\n        \"\"\"Test find table with a gap in first column\"\"\"\n        values = [\n            [\"A1\", \"B1\", \"C1\", \"\"],\n            [\"\", \"B2\", \"C2\", \"\"],\n            [\"A3\", \"B3\", \"C3\", \"\"],\n            [\"\", \"\", \"\", \"\"],\n        ]\n        expected_table = [\n            [\"A1\", \"B1\", \"C1\"],\n        ]\n\n        table = utils.find_table(\n            values,\n            \"A1\",\n            utils.TableDirection.table,\n        )\n\n        for rowindex, row in enumerate(expected_table):\n            self.assertListEqual(row, table[rowindex])\n\n    def test_find_table_last_column_gap(self):\n        \"\"\"Test find table with a gap in last column\"\"\"\n        values = [\n            [\"A1\", \"B1\", \"C1\", \"\"],\n            [\"A2\", \"B2\", \"\", \"\"],\n            [\"A3\", \"B3\", \"C3\", \"\"],\n            [\"\", \"\", \"\", \"\"],\n        ]\n        expected_table = [\n            [\"A1\", \"B1\", \"C1\"],\n            [\"A2\", \"B2\", \"\"],\n            [\"A3\", \"B3\", \"C3\"],\n        ]\n\n        table = utils.find_table(\n            values,\n            \"A1\",\n            utils.TableDirection.table,\n        )\n\n        for rowindex, row in enumerate(expected_table):\n            self.assertListEqual(row, table[rowindex])\n\n    def test_find_table_empty_top_left_corner(self):\n        \"\"\"Test find table with an empty top left cell and empty adjacent cells\"\"\"\n\n        values = [\n            [\"\", \"\", \"C1\", \"\"],\n            [\"\", \"B2\", \"C2\", \"\"],\n            [\"\", \"B3\", \"C3\", \"\"],\n        ]\n\n        table = utils.find_table(values, \"A1\", utils.TableDirection.table)\n\n        self.assertListEqual(table, [], \"resulting table should be empty\")\n"
  },
  {
    "path": "tests/worksheet_test.py",
    "content": "import itertools\nimport pickle  # nosec\nimport random\nimport re\nfrom inspect import signature\nfrom typing import Generator\n\nimport pytest\nfrom pytest import FixtureRequest\n\nimport gspread\nfrom gspread import utils\nfrom gspread.client import Client\nfrom gspread.exceptions import APIError, GSpreadException\nfrom gspread.spreadsheet import Spreadsheet\nfrom gspread.worksheet import Worksheet\n\nfrom .conftest import I18N_STR, GspreadTest\n\n\nclass WorksheetTest(GspreadTest):\n    \"\"\"Test for gspread.Worksheet.\"\"\"\n\n    spreadsheet: Spreadsheet\n    sheet: Worksheet\n\n    @pytest.fixture(scope=\"function\", autouse=True)\n    def init(\n        self: \"WorksheetTest\", client: Client, request: FixtureRequest\n    ) -> Generator[None, None, None]:\n        name = self.get_temporary_spreadsheet_title(request.node.name)\n        WorksheetTest.spreadsheet = client.create(name)\n        WorksheetTest.sheet = WorksheetTest.spreadsheet.sheet1\n\n        yield\n\n        client.del_spreadsheet(WorksheetTest.spreadsheet.id)\n\n    @pytest.fixture(autouse=True)\n    @pytest.mark.vcr()\n    def reset_sheet(self):\n        WorksheetTest.sheet.clear()\n\n    @pytest.mark.vcr()\n    def test_acell(self):\n        cell = self.sheet.acell(\"A1\")\n        self.assertIsInstance(cell, gspread.cell.Cell)\n\n    @pytest.mark.vcr()\n    def test_attributes(self):\n        self.assertIsInstance(self.sheet.spreadsheet_id, str)\n        self.assertEqual(self.sheet.spreadsheet_id, self.spreadsheet.id)\n\n        self.assertIsInstance(self.sheet.client, gspread.http_client.HTTPClient)\n\n        self.assertIsInstance(self.sheet.spreadsheet, gspread.spreadsheet.Spreadsheet)\n        self.assertEqual(self.sheet.spreadsheet, self.spreadsheet)\n\n    @pytest.mark.vcr()\n    def test_cell(self):\n        cell = self.sheet.cell(1, 1)\n        self.assertIsInstance(cell, gspread.cell.Cell)\n\n    @pytest.mark.vcr()\n    def test_range(self):\n        cell_range1 = self.sheet.range(\"A1:A5\")\n        cell_range2 = self.sheet.range(1, 1, 5, 1)\n\n        self.assertEqual(len(cell_range1), 5)\n\n        for c1, c2 in zip(cell_range1, cell_range2):\n            self.assertIsInstance(c1, gspread.cell.Cell)\n            self.assertIsInstance(c2, gspread.cell.Cell)\n            self.assertTrue(c1.col == c2.col)\n            self.assertTrue(c1.row == c2.row)\n            self.assertTrue(c1.value == c2.value)\n\n    @pytest.mark.vcr()\n    def test_range_unbounded(self):\n        cell_range1 = self.sheet.range(\"A1:C\")\n        cell_range2 = self.sheet.range(1, 1, self.sheet.row_count, 3)\n        tuples1 = [(c.row, c.col, c.value) for c in cell_range1]\n        tuples2 = [(c.row, c.col, c.value) for c in cell_range2]\n        self.assertSequenceEqual(tuples1, tuples2)\n\n    @pytest.mark.vcr()\n    def test_range_reversed(self):\n        cell_range1 = self.sheet.range(\"A1:D4\")\n        cell_range2 = self.sheet.range(\"D4:A1\")\n        tuples1 = [(c.row, c.col, c.value) for c in cell_range1]\n        tuples2 = [(c.row, c.col, c.value) for c in cell_range2]\n        self.assertSequenceEqual(tuples1, tuples2)\n\n    @pytest.mark.vcr()\n    def test_range_get_all_values(self):\n        self.sheet.resize(4, 4)\n        rows = [\n            [\"\", \"Hi\", \"Mom\", \"\"],\n            [\"My\", \"Name\", \"is\", \"bon\"],\n            [\"\", \"\", \"\", \"\"],\n            [\"1\", \"2\", \"3\", \"4\"],\n        ]\n\n        self.sheet.update(rows, \"A1:D4\")\n\n        cell_range1 = self.sheet.range()\n        cell_range2 = self.sheet.range(\"A1:D4\")\n\n        tuples1 = [(c.row, c.col, c.value) for c in cell_range1]\n        tuples2 = [(c.row, c.col, c.value) for c in cell_range2]\n\n        self.assertSequenceEqual(tuples1, tuples2)\n\n    @pytest.mark.vcr()\n    def test_get_returns_ValueRange_with_metadata(self):\n        self.sheet.resize(4, 4)\n        rows = [\n            [\"1\", \"\", \"\", \"\"],\n            [\"\", \"\", \"\", \"\"],\n            [\"\", \"\", \"\", \"\"],\n            [\"\", \"\", \"\", \"2\"],\n        ]\n        expected_rows = [\n            [\"1\"],\n            [],\n            [],\n            [\"\", \"\", \"\", \"2\"],\n        ]\n\n        self.sheet.update(rows, \"A1:D4\")\n\n        value_range = self.sheet.get(\"A1:D4\")\n        self.assertTrue(isinstance(value_range, gspread.ValueRange))\n        self.assertEqual(value_range.range, \"Sheet1!A1:D4\")\n        self.assertEqual(value_range.major_dimension, \"ROWS\")\n        self.assertEqual(value_range, expected_rows)\n\n    @pytest.mark.vcr()\n    def test_get_values_returns_padded_get_as_listoflists(self):\n        \"\"\"This is the only test for get_values. It should be identical to `get` but with default arguments\"\"\"\n        self.sheet.resize(4, 4)\n        rows = [\n            [\"1\", \"\", \"\", \"\"],\n            [\"\", \"\", \"\", \"\"],\n            [\"\", \"\", \"\", \"\"],\n            [\"\", \"\", \"\", \"2\"],\n        ]\n\n        self.sheet.update(rows, \"A1:D4\")\n\n        values = self.sheet.get_values(\"A1:D4\")\n        values_from_get = self.sheet.get(\n            \"A1:D4\", return_type=utils.GridRangeType.ListOfLists, pad_values=True\n        )\n        self.assertEqual(values, rows)\n        self.assertIsInstance(values, list)\n        self.assertEqual(values_from_get, rows)\n\n    @pytest.mark.vcr()\n    def test_get_values_can_emulate_get_with_kwargs(self):\n        \"\"\"Tests that get_values(pad_values=False, return_type=utils.GridRangeType.ValueRange)\n        is the same as get\"\"\"\n        self.sheet.resize(4, 4)\n        rows = [\n            [\"1\", \"\", \"\", \"\"],\n            [\"\", \"\", \"\", \"\"],\n            [\"\", \"\", \"\", \"\"],\n            [\"\", \"\", \"\", \"2\"],\n        ]\n\n        self.sheet.update(rows, \"A1:D4\")\n\n        values_get = self.sheet.get(\"A1:D4\")\n        values_emulate_get = self.sheet.get_values(\n            \"A1:D4\",\n            pad_values=False,\n            return_type=utils.GridRangeType.ValueRange,\n        )\n\n        self.assertEqual(values_get, values_emulate_get)\n\n    @pytest.mark.vcr()\n    def test_get_values_and_combine_merged_cells(self):\n        self.sheet.resize(4, 4)\n        sheet_data = [\n            [\"1\", \"\", \"\", \"\"],\n            [\"\", \"\", \"title\", \"\"],\n            [\"\", \"\", \"2\", \"\"],\n            [\"num\", \"val\", \"\", \"0\"],\n        ]\n\n        self.sheet.update(sheet_data, \"A1:D4\")\n\n        self.sheet.merge_cells(\"A1:B2\")\n        self.sheet.merge_cells(\"C2:D2\")\n        self.sheet.merge_cells(\"C3:C4\")\n\n        expected_merge = [\n            [\"1\", \"1\", \"\", \"\"],\n            [\"1\", \"1\", \"title\", \"title\"],\n            [\"\", \"\", \"2\", \"\"],\n            [\"num\", \"val\", \"2\", \"0\"],\n        ]\n\n        values = self.sheet.get_values()\n        values_with_merged = self.sheet.get_values(combine_merged_cells=True)\n\n        self.assertEqual(values, sheet_data)\n        self.assertEqual(values_with_merged, expected_merge)\n\n        # test with cell address\n        values_with_merged = self.sheet.get_values(\"A1:D4\", combine_merged_cells=True)\n        self.assertEqual(values_with_merged, expected_merge)\n\n    @pytest.mark.vcr()\n    def test_batch_merged_cells(self):\n        self.sheet.resize(4, 4)\n        sheet_data = [\n            [\"1\", \"\", \"\", \"\"],\n            [\"\", \"\", \"title\", \"\"],\n            [\"\", \"\", \"2\", \"\"],\n            [\"num\", \"val\", \"\", \"0\"],\n        ]\n\n        self.sheet.update(sheet_data, \"A1:D4\")\n\n        self.sheet.batch_merge(\n            [\n                {\"range\": \"A1:B2\"},\n                {\"range\": \"C2:D2\"},\n                {\"range\": \"C3:C4\"},\n            ]\n        )\n\n        expected_merge = [\n            [\"1\", \"1\", \"\", \"\"],\n            [\"1\", \"1\", \"title\", \"title\"],\n            [\"\", \"\", \"2\", \"\"],\n            [\"num\", \"val\", \"2\", \"0\"],\n        ]\n\n        values = self.sheet.get_values()\n        values_with_merged = self.sheet.get_values(combine_merged_cells=True)\n\n        self.assertEqual(values, sheet_data)\n        self.assertEqual(values_with_merged, expected_merge)\n\n        # test with cell address\n        values_with_merged = self.sheet.get_values(\"A1:D4\", combine_merged_cells=True)\n        self.assertEqual(values_with_merged, expected_merge)\n\n    @pytest.mark.vcr()\n    def test_get_values_with_args_or_kwargs(self):\n        # test that get_values accepts args and kwargs\n        self.sheet.resize(4, 4)\n        sheet_data = [\n            [\"1\", \"\", \"\", \"\"],\n            [\"x\", \"y\", \"title\", \"\"],\n            [\"\", \"\", \"2\", \"\"],\n            [\"num\", \"val\", \"\", \"0\"],\n        ]\n        self.sheet.update(sheet_data, \"A1:D4\")\n\n        data_args = self.sheet.get_values(\n            \"A1:D4\",\n            None,\n            utils.ValueRenderOption.formatted,\n        )\n        data_kwargs = self.sheet.get_values(\n            range_name=\"A1:D4\",\n            major_dimension=None,\n            value_render_option=utils.ValueRenderOption.formatted,\n        )\n\n        self.assertEqual(data_args, sheet_data)\n        self.assertEqual(data_kwargs, sheet_data)\n\n    @pytest.mark.vcr()\n    def test_get_values_merge_cells_outside_of_range(self):\n        self.sheet.resize(4, 4)\n        sheet_data = [\n            [\"1\", \"2\", \"4\", \"\"],\n            [\"down\", \"\", \"\", \"\"],\n            [\"\", \"\", \"2\", \"\"],\n            [\"num\", \"val\", \"\", \"0\"],\n        ]\n\n        self.sheet.update(sheet_data, \"A1:D4\")\n\n        self.sheet.merge_cells(\"A2:A3\")\n        self.sheet.merge_cells(\"C1:D2\")\n\n        REQUEST_RANGE = \"A1:B2\"\n        expected_values = [\n            [\"1\", \"2\"],\n            [\"down\", \"\"],\n        ]\n\n        values_with_merged = self.sheet.get_values(\n            REQUEST_RANGE, combine_merged_cells=True\n        )\n        self.assertEqual(values_with_merged, expected_values)\n\n    @pytest.mark.vcr()\n    def test_get_values_merge_cells_from_centre_of_sheet(self):\n        self.sheet.resize(4, 3)\n        sheet_data = [\n            [\"1\", \"2\", \"4\"],\n            [\"down\", \"up\", \"\"],\n            [\"\", \"\", \"2\"],\n            [\"num\", \"val\", \"\"],\n        ]\n        self.sheet.update(sheet_data, \"A1:C4\")\n        self.sheet.merge_cells(\"A2:A3\")\n        self.sheet.merge_cells(\"C1:C2\")\n\n        REQUEST_RANGE = \"B1:C3\"\n        expected_values = [\n            [\"2\", \"4\"],\n            [\"up\", \"4\"],\n            [\"\", \"2\"],\n        ]\n\n        values_with_merged = self.sheet.get_values(\n            REQUEST_RANGE, combine_merged_cells=True\n        )\n        self.assertEqual(values_with_merged, expected_values)\n\n    @pytest.mark.vcr()\n    def test_get_values_merge_cells_with_named_range(self):\n        self.sheet.resize(4, 3)\n        sheet_data = [\n            [\"1\", \"2\", \"4\"],\n            [\"down\", \"up\", \"\"],\n            [\"\", \"\", \"2\"],\n            [\"num\", \"val\", \"\"],\n        ]\n        self.sheet.update(sheet_data, \"A1:C4\")\n        self.sheet.merge_cells(\"A2:A3\")\n        self.sheet.merge_cells(\"C1:C2\")\n\n        request_range = \"NamedRange\"\n        self.sheet.define_named_range(\"B1:C3\", request_range)\n        expected_values = [\n            [\"2\", \"4\"],\n            [\"up\", \"4\"],\n            [\"\", \"2\"],\n        ]\n\n        values_with_merged = self.sheet.get_values(\n            request_range, combine_merged_cells=True\n        )\n        self.assertEqual(values_with_merged, expected_values)\n\n    @pytest.mark.vcr()\n    def test_get_merge_cells_and_unmerge_cells(self):\n        self.sheet.resize(4, 4)\n        sheet_data = [\n            [\"1\", \"\", \"2\", \"3\"],\n            [\"\", \"\", \"\", \"\"],\n            [\"\", \"4\", \"\", \"\"],\n            [\"\", \"5\", \"\", \"\"],\n        ]\n        self.sheet.update(sheet_data, \"A1:D4\")\n        self.sheet.merge_cells(\"A1:B2\", utils.MergeType.merge_all)\n        self.sheet.merge_cells(\"C1:D2\", utils.MergeType.merge_columns)\n        self.sheet.merge_cells(\"B3:C4\", utils.MergeType.merge_rows)\n\n        REQUEST_RANGE = \"A1:D4\"\n        expected_values = [\n            [\"1\", \"1\", \"2\", \"3\"],\n            [\"1\", \"1\", \"2\", \"3\"],\n            [\"\", \"4\", \"4\", \"\"],\n            [\"\", \"5\", \"5\", \"\"],\n        ]\n        values_with_merged = self.sheet.get_values(\n            REQUEST_RANGE, combine_merged_cells=True\n        )\n        self.assertEqual(values_with_merged, expected_values)\n\n        self.sheet.unmerge_cells(\"A1:D4\")\n        expected_values = sheet_data\n        values_with_merged = self.sheet.get_values(\n            REQUEST_RANGE, combine_merged_cells=True\n        )\n        self.assertEqual(values_with_merged, expected_values)\n\n    @pytest.mark.vcr()\n    def test_get_values_and_maintain_size(self):\n        \"\"\"test get_values with maintain_size=True\"\"\"\n        self.sheet.resize(5, 5)\n        sheet_data = [\n            [\"1\", \"2\", \"\", \"\", \"\"],\n            [\"3\", \"4\", \"\", \"\", \"\"],\n            [\"5\", \"6\", \"\", \"\", \"\"],\n            [\"\", \"\", \"\", \"\", \"\"],\n            [\"\", \"\", \"\", \"\", \"\"],\n        ]\n        request_range = \"A1:D4\"\n        expected_values = [\n            [\"1\", \"2\", \"\", \"\"],\n            [\"3\", \"4\", \"\", \"\"],\n            [\"5\", \"6\", \"\", \"\"],\n            [\"\", \"\", \"\", \"\"],\n        ]\n\n        self.sheet.update(sheet_data, \"A1:E5\")\n\n        values = self.sheet.get_values(request_range, maintain_size=True)\n\n        self.assertEqual(values, expected_values)\n\n    @pytest.mark.vcr()\n    def test_update_acell(self):\n        sg = self._sequence_generator()\n        value = next(sg)\n\n        self.sheet.update_acell(\"A2\", value)\n        self.assertEqual(self.sheet.acell(\"A2\").value, value)\n\n    @pytest.mark.vcr()\n    def test_update_cell(self):\n        sg = self._sequence_generator()\n        value = next(sg)\n\n        self.sheet.update_cell(1, 2, value)\n        self.assertEqual(self.sheet.cell(1, 2).value, value)\n\n        self.sheet.update_cell(1, 2, 42)\n        self.assertEqual(self.sheet.cell(1, 2).value, \"42\")\n\n        self.sheet.update_cell(1, 2, \"0042\")\n        self.assertEqual(self.sheet.cell(1, 2).value, \"42\")\n\n        self.sheet.update_cell(1, 2, 42.01)\n        self.assertEqual(self.sheet.cell(1, 2).value, \"42.01\")\n\n        self.sheet.update_cell(1, 2, \"Артур\")\n        self.assertEqual(self.sheet.cell(1, 2).value, \"Артур\")\n\n    @pytest.mark.vcr()\n    def test_update_cell_multiline(self):\n        sg = self._sequence_generator()\n        value = next(sg)\n\n        value = \"{}\\n{}\".format(value, value)\n        self.sheet.update_cell(1, 2, value)\n        self.assertEqual(self.sheet.cell(1, 2).value, value)\n\n    @pytest.mark.vcr()\n    def test_update_cell_unicode(self):\n        self.sheet.update_cell(1, 1, I18N_STR)\n\n        cell = self.sheet.cell(1, 1)\n        self.assertEqual(cell.value, I18N_STR)\n\n    @pytest.mark.vcr()\n    def test_update_cells(self):\n        sg = self._sequence_generator()\n\n        list_len = 10\n        value_list = [next(sg) for i in range(list_len)]\n\n        # Test multiline\n        value_list[0] = \"{}\\n{}\".format(value_list[0], value_list[0])\n\n        range_label = \"A1:A%s\" % list_len\n        cell_list = self.sheet.range(range_label)\n\n        for c, v in zip(cell_list, value_list):\n            c.value = v\n\n        self.sheet.update_cells(cell_list)\n\n        cell_list = self.sheet.range(range_label)\n\n        for c, v in zip(cell_list, value_list):\n            self.assertEqual(c.value, v)\n\n    @pytest.mark.vcr()\n    def test_update_cells_unicode(self):\n        cell = self.sheet.cell(1, 1)\n        cell.value = I18N_STR\n        self.sheet.update_cells([cell])\n\n        cell = self.sheet.cell(1, 1)\n        self.assertEqual(cell.value, I18N_STR)\n\n    @pytest.mark.vcr()\n    def test_update_title(self):\n        res = self.spreadsheet.fetch_sheet_metadata()\n        title_before = res[\"sheets\"][0][\"properties\"][\"title\"]\n        title_before_prop = self.sheet.title\n\n        new_title = \"I'm a new title\"\n        self.sheet.update_title(new_title)\n\n        res = self.spreadsheet.fetch_sheet_metadata()\n        title_after = res[\"sheets\"][0][\"properties\"][\"title\"]\n        title_after_prop = self.sheet.title\n\n        self.assertEqual(title_after, new_title)\n        self.assertEqual(title_after_prop, new_title)\n        self.assertNotEqual(title_before, new_title)\n        self.assertNotEqual(title_before_prop, new_title)\n\n    @pytest.mark.vcr()\n    def test_update_tab_color(self):\n        # Set the color.\n        # Get the color.\n        # Assert the color is the set and changed by google.\n\n        pink_color = {\n            \"red\": 1.0,\n            \"green\": 0.0,\n            \"blue\": 0.49803922,\n        }\n\n        pink_color_hex = utils.convert_colors_to_hex_value(**pink_color)\n        self.assertEqual(pink_color_hex, \"#FF007F\")\n\n        params = {\"fields\": \"sheets.properties.tabColorStyle\"}\n        res = self.spreadsheet.fetch_sheet_metadata(params=params)\n        color_before = (\n            res[\"sheets\"][0][\"properties\"]\n            .get(\"tabColorStyle\", {})\n            .get(\"rgbColor\", None)\n        )\n        color_param_before = self.sheet.tab_color\n        color_hex_before = self.sheet.get_tab_color()\n\n        self.sheet.update_tab_color(pink_color_hex)\n\n        res = self.spreadsheet.fetch_sheet_metadata(params=params)\n        color_param_after = self.sheet.tab_color\n        color_hex_after = self.sheet.get_tab_color()\n\n        # check that the value returned from google\n        # and the worksheet param convert back to the hex value.\n        self.assertEqual(color_before, None)\n        self.assertEqual(color_param_before, None)\n        self.assertEqual(color_hex_before, None)\n        self.assertEqual(color_param_after, \"#FF007F\")\n        self.assertEqual(color_hex_after, \"#FF007F\")\n\n    @pytest.mark.vcr()\n    def test_clear_tab_color(self):\n        # Set the color.\n        # Clear the color.\n        # Assert that the color is None.\n        pink_color = \"#FF007F\"\n        params = {\"fields\": \"sheets.properties.tabColorStyle\"}\n        res = self.spreadsheet.fetch_sheet_metadata(params=params)\n        color_before = (\n            res[\"sheets\"][0][\"properties\"]\n            .get(\"tabColorStyle\", {})\n            .get(\"rgbColor\", None)\n        )\n        color_param_before = self.sheet.tab_color\n\n        self.sheet.update_tab_color(pink_color)\n        self.sheet.clear_tab_color()\n\n        res = self.spreadsheet.fetch_sheet_metadata(params=params)\n        color_after = (\n            res[\"sheets\"][0][\"properties\"]\n            .get(\"tabColorStyle\", {})\n            .get(\"rgbColor\", None)\n        )\n        color_param_after = self.sheet.tab_color\n\n        self.assertEqual(color_before, None)\n        self.assertEqual(color_param_before, None)\n        self.assertEqual(color_after, None)\n        self.assertEqual(color_param_after, None)\n\n    @pytest.mark.vcr()\n    def test_update_cells_noncontiguous(self):\n        sg = self._sequence_generator()\n\n        num_rows = 6\n        num_cols = 4\n\n        rows = [[next(sg) for j in range(num_cols)] for i in range(num_rows)]\n\n        cell_list = self.sheet.range(\"A1:D6\")\n        for cell, value in zip(cell_list, itertools.chain(*rows)):\n            cell.value = value\n        self.sheet.update_cells(cell_list)\n\n        # Re-fetch cells\n        cell_list = self.sheet.range(\"A1:D6\")\n        test_values = [c.value for c in cell_list]\n\n        top_left = cell_list[0]\n        bottom_right = cell_list[-1]\n\n        top_left.value = top_left_value = next(sg) + \" top_left\"\n        bottom_right.value = bottom_right_value = next(sg) + \" bottom_right\"\n\n        self.sheet.update_cells([top_left, bottom_right])\n\n        cell_list = self.sheet.range(\"A1:D6\")\n        read_values = [c.value for c in cell_list]\n        test_values[0] = top_left_value\n        test_values[-1] = bottom_right_value\n        self.assertEqual(test_values, read_values)\n\n    @pytest.mark.vcr()\n    def test_update_cell_objects(self):\n        test_values = [\"cell row 1, col 2\", \"cell row 2 col 1\"]\n\n        cell_list = [\n            gspread.cell.Cell(1, 2, test_values[0]),\n            gspread.cell.Cell(2, 1, test_values[1]),\n        ]\n        self.sheet.update_cells(cell_list)\n\n        # Re-fetch cells\n        cell_list = (self.sheet.cell(1, 2), self.sheet.cell(2, 1))\n        read_values = [c.value for c in cell_list]\n\n        self.assertEqual(test_values, read_values)\n\n    @pytest.mark.vcr()\n    def test_resize(self):\n        add_num = 10\n        new_rows = self.sheet.row_count + add_num\n\n        def get_grid_props():\n            sheets = self.spreadsheet.fetch_sheet_metadata()[\"sheets\"]\n            return utils.finditem(\n                lambda x: x[\"properties\"][\"sheetId\"] == self.sheet.id, sheets\n            )[\"properties\"][\"gridProperties\"]\n\n        self.sheet.add_rows(add_num)\n\n        grid_props = get_grid_props()\n        self.assertEqual(grid_props[\"rowCount\"], new_rows)\n        self.assertEqual(self.sheet.row_count, new_rows)\n\n        new_cols = self.sheet.col_count + add_num\n        self.sheet.add_cols(add_num)\n\n        grid_props = get_grid_props()\n        self.assertEqual(grid_props[\"columnCount\"], new_cols)\n        self.assertEqual(self.sheet.col_count, new_cols)\n\n        new_rows -= add_num\n        new_cols -= add_num\n        self.sheet.resize(new_rows, new_cols)\n\n        grid_props = get_grid_props()\n        self.assertEqual(grid_props[\"rowCount\"], new_rows)\n        self.assertEqual(grid_props[\"columnCount\"], new_cols)\n        self.assertEqual(self.sheet.row_count, new_rows)\n        self.assertEqual(self.sheet.col_count, new_cols)\n\n    @pytest.mark.vcr()\n    def test_sort(self):\n        rows = [\n            [\"Apple\", \"2012\", \"4\"],\n            [\"Banana\", \"2013\", \"3\"],\n            [\"Canada\", \"2007\", \"1\"],\n            [\"Dinosaur\", \"2013\", \"6\"],\n            [\"Elephant\", \"2019\", \"2\"],\n            [\"Fox\", \"2077\", \"5\"],\n        ]\n\n        self.sheet.resize(6, 3)\n        cell_list = self.sheet.range(\"A1:C6\")\n        for c, v in zip(cell_list, itertools.chain(*rows)):\n            c.value = v\n        self.sheet.update_cells(cell_list)\n\n        specs = [\n            (3, \"asc\"),\n        ]\n        self.sheet.sort(*specs, range=\"A1:C6\")\n        rows = sorted(rows, key=lambda x: int(x[2]), reverse=False)\n        self.assertEqual(self.sheet.get_all_values(), rows)\n\n        specs = [\n            (1, \"des\"),\n        ]\n        self.sheet.sort(*specs, range=\"A1:C6\")\n        rows = sorted(rows, key=lambda x: x[0], reverse=True)\n        self.assertEqual(self.sheet.get_all_values(), rows)\n\n        specs = [\n            (2, \"asc\"),\n            (3, \"asc\"),\n        ]\n        self.sheet.sort(*specs, range=\"A1:C6\")\n        rows = sorted(rows, key=lambda x: (x[1], int(x[2])), reverse=False)\n        self.assertEqual(self.sheet.get_all_values(), rows)\n\n        specs = [\n            (3, \"asc\"),\n        ]\n        self.sheet.sort(*specs)\n        rows = sorted(rows, key=lambda x: int(x[2]), reverse=False)\n        self.assertEqual(self.sheet.get_all_values(), rows)\n\n        specs = [\n            (3, \"des\"),\n        ]\n        self.sheet._properties[\"gridProperties\"][\"frozenRowCount\"] = 1\n        self.sheet.sort(*specs)\n        rows = [rows[0]] + sorted(rows[1:], key=lambda x: int(x[2]), reverse=True)\n        self.assertEqual(self.sheet.get_all_values(), rows)\n\n    @pytest.mark.vcr()\n    def test_freeze(self):\n        freeze_cols = 1\n        freeze_rows = 2\n\n        def get_grid_props():\n            sheets = self.spreadsheet.fetch_sheet_metadata()[\"sheets\"]\n            return utils.finditem(\n                lambda x: x[\"properties\"][\"sheetId\"] == self.sheet.id, sheets\n            )[\"properties\"][\"gridProperties\"]\n\n        self.sheet.freeze(freeze_rows)\n\n        grid_props = get_grid_props()\n        self.assertEqual(grid_props[\"frozenRowCount\"], freeze_rows)\n        self.assertEqual(self.sheet.frozen_row_count, freeze_rows)\n\n        self.sheet.freeze(cols=freeze_cols)\n\n        grid_props = get_grid_props()\n        self.assertEqual(grid_props[\"frozenColumnCount\"], freeze_cols)\n        self.assertEqual(self.sheet.frozen_col_count, freeze_cols)\n\n        self.sheet.freeze(0, 0)\n\n        grid_props = get_grid_props()\n        self.assertTrue(\"frozenRowCount\" not in grid_props)\n        self.assertTrue(\"frozenColumnCount\" not in grid_props)\n        self.assertEqual(self.sheet.frozen_row_count, 0)\n        self.assertEqual(self.sheet.frozen_col_count, 0)\n\n    @pytest.mark.vcr()\n    def test_basic_filters(self):\n        def get_sheet():\n            sheets = self.spreadsheet.fetch_sheet_metadata()[\"sheets\"]\n            return utils.finditem(\n                lambda x: x[\"properties\"][\"sheetId\"] == self.sheet.id, sheets\n            )\n\n        def get_basic_filter_range():\n            return get_sheet()[\"basicFilter\"][\"range\"]\n\n        self.sheet.resize(20, 20)\n\n        self.sheet.set_basic_filter()\n        filter_range = get_basic_filter_range()\n\n        self.assertEqual(filter_range[\"startRowIndex\"], 0)\n        self.assertEqual(filter_range[\"startColumnIndex\"], 0)\n        self.assertEqual(filter_range[\"endRowIndex\"], 20)\n        self.assertEqual(filter_range[\"endColumnIndex\"], 20)\n\n        self.sheet.set_basic_filter(\"B1:C2\")\n        filter_range = get_basic_filter_range()\n\n        self.assertEqual(filter_range[\"startRowIndex\"], 0)\n        self.assertEqual(filter_range[\"startColumnIndex\"], 1)\n        self.assertEqual(filter_range[\"endRowIndex\"], 2)\n        self.assertEqual(filter_range[\"endColumnIndex\"], 3)\n\n        self.sheet.set_basic_filter(1, 2, 2, 3)\n        filter_range = get_basic_filter_range()\n\n        self.assertEqual(filter_range[\"startRowIndex\"], 0)\n        self.assertEqual(filter_range[\"startColumnIndex\"], 1)\n        self.assertEqual(filter_range[\"endRowIndex\"], 2)\n        self.assertEqual(filter_range[\"endColumnIndex\"], 3)\n\n        self.sheet.clear_basic_filter()\n        self.assertTrue(\"basicFilter\" not in get_sheet())\n\n    @pytest.mark.vcr()\n    def test_find(self):\n        sg = self._sequence_generator()\n        value = next(sg)\n\n        self.sheet.update_cell(2, 10, value)\n        self.sheet.update_cell(2, 11, value)\n\n        cell = self.sheet.find(value)\n        self.assertEqual(cell.value, value)\n\n        value2 = next(sg)\n        value = \"{}o_O{}\".format(value, value2)\n        self.sheet.update_cell(2, 11, value)\n\n        o_O_re = re.compile(\"[a-z]_[A-Z]%s\" % value2)\n\n        cell = self.sheet.find(o_O_re)\n        self.assertEqual(cell.value, value)\n\n        not_found = self.sheet.find(\"does not exists\")\n        self.assertIs(\n            not_found, None, \"find should return 'None' when value is not found\"\n        )\n\n        lower_value = \"camelcase\"\n        upper_value = \"CamelCase\"\n        self.sheet.update_cell(2, 10, lower_value)\n        self.sheet.update_cell(2, 11, upper_value)\n\n        cell = self.sheet.find(upper_value, case_sensitive=False)\n        self.assertEqual(cell.value, lower_value)\n\n    @pytest.mark.vcr()\n    def test_findall(self):\n        list_len = 10\n        range_label = \"A1:A%s\" % list_len\n        cell_list = self.sheet.range(range_label)\n\n        sg = self._sequence_generator()\n\n        value = next(sg)\n\n        for c in cell_list:\n            c.value = value\n        self.sheet.update_cells(cell_list)\n\n        result_list = self.sheet.findall(value)\n\n        self.assertEqual(list_len, len(result_list))\n\n        for c in result_list:\n            self.assertEqual(c.value, value)\n\n        cell_list = self.sheet.range(range_label)\n\n        value = next(sg)\n        for c in cell_list:\n            char = chr(random.randrange(ord(\"a\"), ord(\"z\")))\n            c.value = \"{}{}_{}{}\".format(c.value, char, char.upper(), value)\n\n        self.sheet.update_cells(cell_list)\n\n        o_O_re = re.compile(\"[a-z]_[A-Z]%s\" % value)\n\n        result_list = self.sheet.findall(o_O_re)\n\n        self.assertEqual(list_len, len(result_list))\n\n    @pytest.mark.vcr()\n    def test_get_all_values(self):\n        self.sheet.resize(4, 4)\n        # put in new values\n        rows = [\n            [\"A1\", \"B1\", \"\", \"D1\"],\n            [\"\", \"b2\", \"\", \"\"],\n            [\"\", \"\", \"\", \"\"],\n            [\"A4\", \"B4\", \"\", \"D4\"],\n        ]\n        cell_list = self.sheet.range(\"A1:D1\")\n\n        cell_list.extend(self.sheet.range(\"A2:D2\"))\n        cell_list.extend(self.sheet.range(\"A3:D3\"))\n        cell_list.extend(self.sheet.range(\"A4:D4\"))\n        for cell, value in zip(cell_list, itertools.chain(*rows)):\n            cell.value = value\n        self.sheet.update_cells(cell_list)\n\n        # read values with get_all_values, get a list of lists\n        read_data = self.sheet.get_all_values()\n        # values should match with original lists\n        self.assertEqual(read_data, rows)\n\n    @pytest.mark.vcr()\n    def test_get_all_values_title_is_a1_notation(self):\n        self.sheet.resize(4, 4)\n        # renames sheet to contain single and double quotes\n        self.sheet.update_title(\"D3\")\n        # put in new values\n        rows = [\n            [\"A1\", \"B1\", \"\", \"D1\"],\n            [\"\", \"b2\", \"\", \"\"],\n            [\"\", \"\", \"\", \"\"],\n            [\"A4\", \"B4\", \"\", \"d4\"],\n        ]\n        cell_list = self.sheet.range(\"A1:D1\")\n\n        cell_list.extend(self.sheet.range(\"A2:D2\"))\n        cell_list.extend(self.sheet.range(\"A3:D3\"))\n        cell_list.extend(self.sheet.range(\"A4:D4\"))\n        for cell, value in zip(cell_list, itertools.chain(*rows)):\n            cell.value = value\n        self.sheet.update_cells(cell_list)\n\n        # read values with get_all_values, get a list of lists\n        read_data = self.sheet.get_all_values()\n        # values should match with original lists\n        self.assertEqual(read_data, rows)\n\n    @pytest.mark.vcr()\n    def test_get_all_values_date_time_render_options(self):\n        self.sheet.resize(2, 4)\n        # put in new values\n        rows = [\n            [\"=4/2\", \"2020-01-01\", \"string\", 53],\n            [\"=3/2\", 0.12, \"1999-01-02\", \"\"],\n        ]\n        cell_list = self.sheet.range(\"A1:D2\")\n        for cell, value in zip(cell_list, itertools.chain(*rows)):\n            cell.value = value\n        self.sheet.update_cells(\n            cell_list, value_input_option=utils.ValueInputOption.user_entered\n        )\n\n        # with value_render as unformatted\n        # date_time_render as serial_number\n        read_records = self.sheet.get_values(\n            value_render_option=utils.ValueRenderOption.unformatted,\n            date_time_render_option=utils.DateTimeOption.serial_number,\n        )\n        expected_values = [\n            [2, 43831, \"string\", 53],\n            [3 / 2, 0.12, 36162, \"\"],\n        ]\n        self.assertEqual(read_records, expected_values)\n\n        # with value_render as unformatted\n        # date_time_render as formatted_string\n        read_records = self.sheet.get_values(\n            value_render_option=utils.ValueRenderOption.unformatted,\n            date_time_render_option=utils.DateTimeOption.formatted_string,\n        )\n        expected_values = [\n            [2, \"2020-01-01\", \"string\", 53],\n            [3 / 2, 0.12, \"1999-01-02\", \"\"],\n        ]\n        self.assertEqual(read_records, expected_values)\n\n        # with value_render as formatted (overrides date_time_render)\n        # date_time_render as serial_number\n        read_records = self.sheet.get_values(\n            value_render_option=utils.ValueRenderOption.formatted,\n            date_time_render_option=utils.DateTimeOption.serial_number,\n        )\n        expected_values = [\n            [\"2\", \"2020-01-01\", \"string\", \"53\"],\n            [\"1.5\", \"0.12\", \"1999-01-02\", \"\"],\n        ]\n        self.assertEqual(read_records, expected_values)\n\n        # with value_render as formatted (overrides date_time_render)\n        # date_time_render as formatted_string\n        read_records = self.sheet.get_values(\n            value_render_option=utils.ValueRenderOption.formatted,\n            date_time_render_option=utils.DateTimeOption.formatted_string,\n        )\n        expected_values = [\n            [\"2\", \"2020-01-01\", \"string\", \"53\"],\n            [\"1.5\", \"0.12\", \"1999-01-02\", \"\"],\n        ]\n        self.assertEqual(read_records, expected_values)\n\n    @pytest.mark.vcr()\n    def test_get_all_records(self):\n        self.sheet.resize(4, 4)\n        # put in new values\n        rows = [\n            [\"A1\", \"B1\", \"\", \"D1\"],\n            [1, \"b2\", 1.45, \"\"],\n            [\"\", \"\", \"\", \"\"],\n            [\"A4\", 0.4, \"\", 4],\n        ]\n        self.sheet.update(rows, \"A1:D4\")\n\n        # first, read empty strings to empty strings\n        read_records = self.sheet.get_all_records()\n        d0 = dict(zip(rows[0], rows[1]))\n        d1 = dict(zip(rows[0], rows[2]))\n        d2 = dict(zip(rows[0], rows[3]))\n        self.assertEqual(read_records[0], d0)\n        self.assertEqual(read_records[1], d1)\n        self.assertEqual(read_records[2], d2)\n\n        # then, read empty strings to zeros\n        read_records = self.sheet.get_all_records(empty2zero=True)\n        d1 = dict(zip(rows[0], (0, 0, 0, 0)))\n        self.assertEqual(read_records[1], d1)\n\n        # then, read empty strings to None\n        read_records = self.sheet.get_all_records(default_blank=None)\n        d1 = dict(zip(rows[0], (None, None, None, None)))\n        self.assertEqual(read_records[1], d1)\n\n        # then, read empty strings to something else\n        read_records = self.sheet.get_all_records(default_blank=\"foo\")\n        d1 = dict(zip(rows[0], (\"foo\", \"foo\", \"foo\", \"foo\")))\n        self.assertEqual(read_records[1], d1)\n\n    @pytest.mark.vcr()\n    def test_get_all_records_different_header(self):\n        self.sheet.resize(6, 4)\n        # put in new values\n        rows = [\n            [\"\", \"\", \"\", \"\"],\n            [\"\", \"\", \"\", \"\"],\n            [\"A1\", \"B1\", \"\", \"D1\"],\n            [1, \"b2\", 1.45, \"\"],\n            [\"\", \"\", \"\", \"\"],\n            [\"A4\", 0.4, \"\", 4],\n        ]\n        self.sheet.update(rows, \"A1:D6\")\n\n        # first, read empty strings to empty strings\n        read_records = self.sheet.get_all_records(head=3)\n        d0 = dict(zip(rows[2], rows[3]))\n        d1 = dict(zip(rows[2], rows[4]))\n        d2 = dict(zip(rows[2], rows[5]))\n        self.assertEqual(read_records[0], d0)\n        self.assertEqual(read_records[1], d1)\n        self.assertEqual(read_records[2], d2)\n\n        # then, read empty strings to zeros\n        read_records = self.sheet.get_all_records(empty2zero=True, head=3)\n        d1 = dict(zip(rows[2], (0, 0, 0, 0)))\n        self.assertEqual(read_records[1], d1)\n\n        # then, read empty strings to None\n        read_records = self.sheet.get_all_records(default_blank=None, head=3)\n        d1 = dict(zip(rows[2], (None, None, None, None)))\n        self.assertEqual(read_records[1], d1)\n\n        # then, read empty strings to something else\n        read_records = self.sheet.get_all_records(default_blank=\"foo\", head=3)\n        d1 = dict(zip(rows[2], (\"foo\", \"foo\", \"foo\", \"foo\")))\n        self.assertEqual(read_records[1], d1)\n\n    @pytest.mark.vcr()\n    def test_get_all_records_value_render_options(self):\n        self.sheet.resize(2, 4)\n        # put in new values\n        rows = [\n            [\"=4/2\", \"2020-01-01\", \"string\", 53],\n            [\"=3/2\", 0.12, \"1999-01-02\", \"\"],\n        ]\n        cell_list = self.sheet.range(\"A1:D2\")\n        for cell, value in zip(cell_list, itertools.chain(*rows)):\n            cell.value = value\n        self.sheet.update_cells(\n            cell_list, value_input_option=utils.ValueInputOption.user_entered\n        )\n\n        # default, formatted read\n        read_records = self.sheet.get_all_records()\n        expected_keys = [\"2\", \"2020-01-01\", \"string\", \"53\"]\n        expected_values = [3 / 2, 0.12, \"1999-01-02\", \"\"]\n        d0 = dict(zip(expected_keys, expected_values))\n        self.assertEqual(read_records[0], d0)\n\n        # unformatted read\n        read_records = self.sheet.get_all_records(\n            value_render_option=utils.ValueRenderOption.unformatted\n        )\n        expected_keys = [2, 43831, \"string\", 53]\n        expected_values = [3 / 2, 0.12, 36162, \"\"]\n        d0 = dict(zip(expected_keys, expected_values))\n        self.assertEqual(read_records[0], d0)\n\n        # formula read\n        read_records = self.sheet.get_all_records(\n            value_render_option=utils.ValueRenderOption.formula\n        )\n        expected_keys = [\"=4/2\", 43831, \"string\", 53]\n        expected_values = [\"=3/2\", 0.12, 36162, \"\"]\n        d0 = dict(zip(expected_keys, expected_values))\n        self.assertEqual(read_records[0], d0)\n\n    @pytest.mark.vcr()\n    def test_get_all_records_duplicate_keys(self):\n        self.sheet.resize(4, 4)\n        # put in new values\n        rows = [\n            [\"A1\", \"faff\", \"C3\", \"faff\"],\n            [1, \"b2\", 1.45, \"\"],\n            [\"\", \"\", \"\", \"\"],\n            [\"A4\", 0.4, \"\", 4],\n        ]\n        self.sheet.update(rows, \"A1:D4\")\n\n        # check no expected headers\n        with pytest.raises(GSpreadException):\n            self.sheet.get_all_records()\n\n        # check non uniques expected headers\n        expected_headers = [\"A1\", \"A1\"]\n        with pytest.raises(GSpreadException):\n            self.sheet.get_all_records(expected_headers=expected_headers)\n\n        # check extra headers\n        expected_headers = [\"A1\", \"E5\"]\n        with pytest.raises(GSpreadException):\n            self.sheet.get_all_records(expected_headers=expected_headers)\n\n        # check nominal case.\n        expected_headers = [\"A1\", \"C3\"]\n        read_records = self.sheet.get_all_records(\n            expected_headers=expected_headers,\n        )\n\n        expected_values_1 = dict(zip(rows[0], rows[1]))\n        expected_values_2 = dict(zip(rows[0], rows[2]))\n        expected_values_3 = dict(zip(rows[0], rows[3]))\n        self.assertDictEqual(expected_values_1, read_records[0])\n        self.assertDictEqual(expected_values_2, read_records[1])\n        self.assertDictEqual(expected_values_3, read_records[2])\n\n    @pytest.mark.vcr()\n    def test_get_all_records_with_blank_final_headers(self):\n        # regression test for #590, #629, #1354\n        self.sheet.resize(4, 4)\n\n        # put in new values\n        rows = [\n            [\"A1\", \"faff\", \"\", \"\"],\n            [1, \"b2\", 1.45, \"\"],\n            [\"\", \"\", \"\", \"\"],\n            [\"A4\", 0.4, \"\", 4],\n        ]\n        self.sheet.update(rows, \"A1:D4\")\n\n        with pytest.raises(GSpreadException):\n            self.sheet.get_all_records()\n\n        expected_headers = []\n        read_records = self.sheet.get_all_records(\n            expected_headers=expected_headers,\n        )\n\n        expected_values_1 = dict(zip(rows[0], rows[1]))\n        expected_values_2 = dict(zip(rows[0], rows[2]))\n        expected_values_3 = dict(zip(rows[0], rows[3]))\n        self.assertDictEqual(expected_values_1, read_records[0])\n        self.assertDictEqual(expected_values_2, read_records[1])\n        self.assertDictEqual(expected_values_3, read_records[2])\n\n    @pytest.mark.vcr()\n    def test_get_all_records_with_keys_blank(self):\n        # regression test for #1355\n        self.sheet.resize(4, 4)\n\n        rows = [\n            [\"\", \"\", \"\", \"\"],\n            [\"c\", \"d\", \"e\", \"f\"],\n            [\"g\", \"h\", \"i\", \"j\"],\n            [\"k\", \"l\", \"m\", \"\"],\n        ]\n        cell_list = self.sheet.range(\"A1:D4\")\n        for cell, value in zip(cell_list, itertools.chain(*rows)):\n            cell.value = value\n        self.sheet.update_cells(cell_list)\n\n        # duplicate headers\n        with pytest.raises(GSpreadException):\n            self.sheet.get_all_records()\n\n        # ignore duplicate headers\n        read_records = self.sheet.get_all_records(expected_headers=[])\n\n        expected_values_1 = dict(zip(rows[0], rows[1]))\n        expected_values_2 = dict(zip(rows[0], rows[2]))\n        expected_values_3 = dict(zip(rows[0], rows[3]))\n        self.assertDictEqual(expected_values_1, read_records[0])\n        self.assertDictEqual(expected_values_2, read_records[1])\n        self.assertDictEqual(expected_values_3, read_records[2])\n\n    @pytest.mark.vcr()\n    def test_get_all_records_with_all_values_blank(self):\n        # regression test for #1355\n        self.sheet.resize(4, 4)\n\n        rows = [\n            [\"a\", \"b\", \"c\", \"d\"],\n            [\"\", \"\", \"\", \"\"],\n            [\"\", \"\", \"\", \"\"],\n            [\"\", \"\", \"\", \"\"],\n        ]\n        self.sheet.update(rows, \"A1:D4\")\n\n        # I ask for get_all_records()\n        # I want []\n        read_records_nofirst_nolast = self.sheet.get_all_records()\n        self.assertEqual(len(read_records_nofirst_nolast), 0)\n\n    @pytest.mark.vcr()\n    def test_get_all_records_with_some_values_blank(self):\n        # regression test for #1363\n        self.sheet.resize(6, 4)\n\n        rows = [\n            [\"a\", \"b\", \"c\", \"d\"],\n            [\"x\", \"y\", \"z\", \"\"],\n            [\"\", \"\", \"\", \"\"],\n            [\"\", \"\", \"\", \"\"],\n            [\"\", \"\", \"\", \"\"],\n            [\"\", \"\", \"\", \"\"],\n        ]\n\n        self.sheet.update(rows, \"A1:D6\")\n\n        read_records = self.sheet.get_all_records()\n\n        expected_values_1 = dict(zip(rows[0], rows[1]))\n        self.assertEqual(len(read_records), 1)\n        self.assertDictEqual(expected_values_1, read_records[0])\n\n    @pytest.mark.vcr()\n    def test_get_all_records_numericise_unformatted(self):\n        self.sheet.resize(2, 4)\n        # put in new values, made from three lists\n        rows = [\n            [\"A\", \"\", \"C\", \"3_1_0\"],\n            [\"=3/2\", 0.12, \"\", \"3_2_1\"],\n        ]\n        cell_list = self.sheet.range(\"A1:D2\")\n        for cell, value in zip(cell_list, itertools.chain(*rows)):\n            cell.value = value\n        self.sheet.update_cells(\n            cell_list, value_input_option=utils.ValueInputOption.user_entered\n        )\n\n        read_records = self.sheet.get_all_records(\n            default_blank=\"empty\",\n            allow_underscores_in_numeric_literals=True,\n            value_render_option=utils.ValueRenderOption.unformatted,\n        )\n        expected_values = [3 / 2, 0.12, \"empty\", 321]\n        d0 = dict(zip(rows[0], expected_values))\n        self.assertEqual(read_records[0], d0)\n\n    @pytest.mark.vcr()\n    def test_get_all_records_pad_one_key(self):\n        self.sheet.resize(2, 4)\n        rows = [\n            [\"A1\", \"B1\", \"C1\"],\n            [1, 2, 3, 4],\n        ]\n        self.sheet.update(rows, \"A1:D2\")\n\n        read_records = self.sheet.get_all_records(head=1)\n        rows[0].append(\"\")\n        d0 = dict(zip(rows[0], rows[1]))\n        records_list = [d0]\n        self.assertEqual(read_records, records_list)\n\n    @pytest.mark.vcr()\n    def test_get_all_records_pad_values(self):\n        self.sheet.resize(2, 4)\n        rows = [\n            [\"A1\", \"B1\", \"C1\"],\n            [1, 2],\n        ]\n        self.sheet.update(rows, \"A1:C2\")\n\n        read_records = self.sheet.get_all_records(head=1)\n        rows[1].append(\"\")\n        d0 = dict(zip(rows[0], rows[1]))\n        records_list = [d0]\n        self.assertEqual(read_records, records_list)\n\n    @pytest.mark.vcr()\n    def test_get_all_records_pad_more_than_one_key(self):\n        self.sheet.resize(2, 4)\n        rows = [\n            [\"A1\", \"B1\"],\n            [1, 2, 3, 4],\n        ]\n        self.sheet.update(rows, \"A1:D2\")\n\n        with pytest.raises(GSpreadException):\n            self.sheet.get_all_records(head=1)\n\n    @pytest.mark.vcr()\n    def test_append_row(self):\n        row_num_before = self.sheet.row_count\n        sg = self._sequence_generator()\n        value_list = [next(sg) for i in range(10)]\n\n        self.sheet.append_row(value_list)\n        read_values = self.sheet.row_values(1)\n        row_num_after = self.sheet.row_count\n\n        self.assertEqual(value_list, read_values)\n        self.assertEqual(row_num_before + 1, row_num_after)\n\n    @pytest.mark.vcr()\n    def test_append_row_with_empty_value(self):\n        sg = self._sequence_generator()\n        value_list = [next(sg) for i in range(3)]\n        value_list[1] = \"\"  # Skip one cell to create two \"tables\" as in #537\n        self.sheet.append_row(value_list)\n        # Append it again\n        self.sheet.append_row(value_list)\n        # This should produce a shift in rows as in #537\n        shifted_value_list = [\"\", \"\"] + value_list\n        read_values = self.sheet.row_values(2)\n        self.assertEqual(shifted_value_list, read_values)\n\n    @pytest.mark.vcr()\n    def test_append_row_with_empty_value_and_table_range(self):\n        sg = self._sequence_generator()\n        value_list = [next(sg) for i in range(3)]\n        value_list[1] = \"\"  # Skip one cell to create two \"tables\" as in #537\n        self.sheet.append_row(value_list)\n        # Append it again\n        self.sheet.append_row(value_list, table_range=\"A1\")\n        # This should produce no shift in rows\n        # contrary to test_append_row_with_empty_value\n        read_values = self.sheet.row_values(2)\n        self.assertEqual(value_list, read_values)\n\n    @pytest.mark.vcr()\n    def test_insert_row(self):\n        sg = self._sequence_generator()\n\n        num_rows = 6\n        num_cols = 4\n\n        rows = [[next(sg) for j in range(num_cols)] for i in range(num_rows)]\n\n        cell_list = self.sheet.range(\"A1:D6\")\n        for cell, value in zip(cell_list, itertools.chain(*rows)):\n            cell.value = value\n\n        self.sheet.update_cells(cell_list)\n\n        new_row_values = [next(sg) for i in range(num_cols + 4)]\n        row_count_before = self.sheet.row_count\n\n        self.sheet.insert_row(new_row_values, 2)\n        read_values = self.sheet.row_values(2)\n        row_count_after = self.sheet.row_count\n\n        self.assertEqual(new_row_values, read_values)\n        self.assertEqual(row_count_before + 1, row_count_after)\n\n        formula = \"=1+1\"\n\n        self.sheet.update_acell(\"B2\", formula)\n\n        values = [next(sg) for i in range(num_cols + 4)]\n\n        self.sheet.insert_row(values, 1)\n\n        b3 = self.sheet.acell(\"B3\", value_render_option=utils.ValueRenderOption.formula)\n\n        self.assertEqual(b3.value, formula)\n\n        new_row_values = [next(sg) for i in range(num_cols + 4)]\n        with pytest.raises(GSpreadException):\n            self.sheet.insert_row(new_row_values, 1, inherit_from_before=True)\n\n    @pytest.mark.vcr()\n    def test_insert_cols(self):\n        sequence_generator = self._sequence_generator()\n        num_rows = 6\n        num_cols = 4\n        rows = [\n            [next(sequence_generator) for j in range(num_cols)] for i in range(num_rows)\n        ]\n        cell_list = self.sheet.range(\"A1:D6\")\n        for cell, value in zip(cell_list, itertools.chain(*rows)):\n            cell.value = value\n        self.sheet.update_cells(cell_list)\n\n        new_col_values = [\n            [next(sequence_generator) for i in range(num_cols)] for i in range(2)\n        ]\n        col_count_before = self.sheet.col_count\n\n        self.sheet.insert_cols(new_col_values, 2)\n\n        read_values_1 = self.sheet.col_values(2)\n        read_values_2 = self.sheet.col_values(3)\n        read_values = [read_values_1, read_values_2]\n        col_count_after = self.sheet.col_count\n\n        self.assertEqual(col_count_before + 2, col_count_after)\n        self.assertEqual(new_col_values, read_values)\n\n    @pytest.mark.vcr()\n    def test_delete_row(self):\n        sequence_generator = self._sequence_generator()\n\n        for i in range(5):\n            value_list = [next(sequence_generator) for i in range(10)]\n            self.sheet.append_row(value_list)\n\n        prev_row = self.sheet.row_values(1)\n        next_row = self.sheet.row_values(3)\n        row_count_before = self.sheet.row_count\n\n        self.sheet.delete_rows(2)\n\n        row_count_after = self.sheet.row_count\n        self.assertEqual(row_count_before - 1, row_count_after)\n        self.assertEqual(self.sheet.row_values(1), prev_row)\n        self.assertEqual(self.sheet.row_values(2), next_row)\n\n    @pytest.mark.vcr()\n    def test_delete_cols(self):\n        sequence_generator = self._sequence_generator()\n        num_rows = 6\n        num_cols = 4\n        rows = [\n            [next(sequence_generator) for j in range(num_cols)] for i in range(num_rows)\n        ]\n        cell_list = self.sheet.range(\"A1:D6\")\n        for cell, value in zip(cell_list, itertools.chain(*rows)):\n            cell.value = value\n        self.sheet.update_cells(cell_list)\n\n        col_count_before = self.sheet.col_count\n        first_col_before = self.sheet.col_values(1)\n        fourth_col_before = self.sheet.col_values(4)\n\n        self.sheet.delete_columns(2, 3)\n\n        col_count_after = self.sheet.col_count\n        first_col_after = self.sheet.col_values(1)\n        second_col_after = self.sheet.col_values(2)\n\n        self.assertEqual(col_count_before - 2, col_count_after)\n        self.assertEqual(first_col_before, first_col_after)\n        self.assertEqual(fourth_col_before, second_col_after)\n\n    @pytest.mark.vcr()\n    def test_clear(self):\n        rows = [\n            [\"\", \"\", \"\", \"\"],\n            [\"\", \"\", \"\", \"\"],\n            [\"A1\", \"B1\", \"\", \"D1\"],\n            [1, \"b2\", 1.45, \"\"],\n            [\"\", \"\", \"\", \"\"],\n            [\"A4\", 0.4, \"\", 4],\n        ]\n\n        cell_list = self.sheet.range(\"A1:D6\")\n        for cell, value in zip(cell_list, itertools.chain(*rows)):\n            cell.value = value\n        self.sheet.update_cells(cell_list)\n\n        self.sheet.clear()\n        self.assertEqual(self.sheet.get_all_values(), [[]])\n\n    @pytest.mark.vcr()\n    def test_update_and_get(self):\n        values = [\n            [\"A1\", \"B1\", \"\", \"D1\"],\n            [\"\", \"b2\", \"\", \"\"],\n            [\"\", \"\", \"\", \"\"],\n            [\"A4\", \"B4\", \"\", \"D4\"],\n        ]\n\n        self.sheet.update(values, \"A1\")\n\n        read_data = self.sheet.get(\"A1:D4\")\n\n        self.assertEqual(\n            read_data,\n            [\n                [\"A1\", \"B1\", \"\", \"D1\"],\n                [\"\", \"b2\"],\n                [],\n                [\"A4\", \"B4\", \"\", \"D4\"],\n            ],\n        )\n\n    @pytest.mark.vcr()\n    def test_batch_get(self):\n        values = [\n            [\"A1\", \"B1\", \"\", \"D1\"],\n            [\"\", \"b2\", \"\", \"\"],\n            [\"\", \"\", \"\", \"\"],\n            [\"A4\", \"B4\", \"\", \"D4\"],\n        ]\n\n        self.sheet.update(values, \"A1\")\n\n        value_ranges = self.sheet.batch_get([\"A1:B1\", \"B4:D4\"])\n\n        self.assertEqual(value_ranges, [[[\"A1\", \"B1\"]], [[\"B4\", \"\", \"D4\"]]])\n        self.assertEqual(value_ranges[0].range, \"Sheet1!A1:B1\")\n        self.assertEqual(value_ranges[1].range, \"Sheet1!B4:D4\")\n        self.assertEqual(value_ranges[0].first(), \"A1\")\n\n    @pytest.mark.vcr()\n    def test_cell_return_first(self):\n        cell = self.sheet.cell(1, 1)\n\n        self.assertIsInstance(cell, gspread.cell.Cell)\n        self.assertIsNone(cell.value)\n\n    @pytest.mark.vcr()\n    def test_batch_update(self):\n        self.sheet.batch_update(\n            [\n                {\n                    \"range\": \"A1:D1\",\n                    \"values\": [[\"A1\", \"B1\", \"\", \"D1\"]],\n                },\n                {\n                    \"range\": \"A4:D4\",\n                    \"values\": [[\"A4\", \"B4\", \"\", \"D4\"]],\n                },\n            ]\n        )\n\n        data = self.sheet.get(\"A1:D4\")\n\n        self.assertEqual(\n            data,\n            [\n                [\"A1\", \"B1\", \"\", \"D1\"],\n                [],\n                [],\n                [\"A4\", \"B4\", \"\", \"D4\"],\n            ],\n        )\n\n    @pytest.mark.vcr()\n    def test_add_protected_range_normal(self):\n        self.sheet.add_protected_range(\"A1:B2\", [])\n\n        metadata = self.spreadsheet.fetch_sheet_metadata()\n        protected_ranges = metadata[\"sheets\"][0][\"protectedRanges\"]\n\n        self.assertEqual(protected_ranges[0][\"range\"][\"startColumnIndex\"], 0)\n        self.assertEqual(protected_ranges[0][\"range\"][\"endColumnIndex\"], 2)\n        self.assertEqual(protected_ranges[0][\"range\"][\"startRowIndex\"], 0)\n        self.assertEqual(protected_ranges[0][\"range\"][\"endRowIndex\"], 2)\n\n    @pytest.mark.vcr()\n    def test_add_protected_range_warning(self):\n        self.sheet.add_protected_range(\"A1:B2\", warning_only=True)\n\n        metadata = self.spreadsheet.fetch_sheet_metadata()\n        protected_ranges = metadata[\"sheets\"][0][\"protectedRanges\"]\n\n        self.assertEqual(protected_ranges[0][\"range\"][\"startColumnIndex\"], 0)\n        self.assertEqual(protected_ranges[0][\"range\"][\"endColumnIndex\"], 2)\n        self.assertEqual(protected_ranges[0][\"range\"][\"startRowIndex\"], 0)\n        self.assertEqual(protected_ranges[0][\"range\"][\"endRowIndex\"], 2)\n        self.assertEqual(protected_ranges[0][\"warningOnly\"], True)\n\n    @pytest.mark.vcr()\n    def test_delete_protected_range(self):\n        self.sheet.add_protected_range(\"A1:B2\", [])\n        metadata = self.spreadsheet.fetch_sheet_metadata()\n        protected_ranges = metadata[\"sheets\"][0][\"protectedRanges\"]\n        self.assertEqual(len(protected_ranges), 1)\n\n        self.sheet.delete_protected_range(protected_ranges[0][\"protectedRangeId\"])\n        metadata = self.spreadsheet.fetch_sheet_metadata()\n        self.assertNotIn(\"protectedRanges\", metadata[\"sheets\"][0])\n\n    @pytest.mark.vcr()\n    def test_format(self):\n        cell_format = {\n            \"backgroundColor\": {\"green\": 1, \"blue\": 1},\n            \"horizontalAlignment\": \"CENTER\",\n            \"textFormat\": {\n                \"foregroundColor\": {\n                    \"red\": 1,\n                    \"green\": 1,\n                },\n                \"fontSize\": 12,\n                \"bold\": True,\n            },\n        }\n        self.maxDiff = None\n        self.sheet.format(\"A2:B2\", cell_format)\n\n        data = self.spreadsheet._spreadsheets_get(\n            {\n                \"includeGridData\": False,\n                \"ranges\": [\"Sheet1!A2\"],\n                \"fields\": \"sheets.data.rowData.values.userEnteredFormat\",\n            }\n        )\n\n        uef = data[\"sheets\"][0][\"data\"][0][\"rowData\"][0][\"values\"][0][\n            \"userEnteredFormat\"\n        ]\n\n        del uef[\"backgroundColorStyle\"]\n        del uef[\"textFormat\"][\"foregroundColorStyle\"]\n\n        self.assertEqual(uef, cell_format)\n\n    @pytest.mark.vcr()\n    def test_reorder_worksheets(self):\n        w = self.spreadsheet.worksheets()\n        w.reverse()\n        self.spreadsheet.reorder_worksheets(w)\n        self.assertEqual(\n            [i.id for i in w], [i.id for i in self.spreadsheet.worksheets()]\n        )\n\n    @pytest.mark.vcr()\n    def test_worksheet_update_index(self):\n        # need to have multiple worksheets to reorder them\n        self.spreadsheet.add_worksheet(\"test_sheet\", 100, 100)\n        self.spreadsheet.add_worksheet(\"test_sheet 2\", 100, 100)\n\n        worksheets = self.spreadsheet.worksheets()\n        last_sheet = worksheets[-1]\n        self.assertEqual(last_sheet.index, len(worksheets) - 1)\n\n        last_sheet.update_index(0)\n\n        worksheets = self.spreadsheet.worksheets()\n        self.assertEqual(worksheets[0].id, last_sheet.id)\n        self.assertEqual(last_sheet.index, 0)\n\n    @pytest.mark.vcr()\n    def test_worksheet_notes(self):\n        w = self.spreadsheet.worksheets()[0]\n\n        # test get_note when empty\n        self.assertEqual(w.get_note(\"A1\"), \"\")\n        # test insert_note and get_note\n        test_note_string = \"slim shaddy\"\n        w.insert_note(\"A1\", test_note_string)\n        self.assertEqual(w.get_note(\"A1\"), test_note_string)\n        # test update_note\n        update_note = \"the real \" + test_note_string\n        w.update_note(\"A1\", update_note)\n        self.assertEqual(w.get_note(\"A1\"), update_note)\n        # test clear_note\n        w.clear_note(\"A1\")\n        self.assertEqual(w.get_note(\"A1\"), \"\")\n\n        notes = {\"A1\": \"read my note\", \"B2\": \"Or don't\"}\n\n        # test insert_notes\n        w.insert_notes(notes)\n        self.assertEqual(w.get_note(\"A1\"), notes[\"A1\"])\n        self.assertEqual(w.get_note(\"B2\"), notes[\"B2\"])\n\n        # test update_notes\n        notes[\"A1\"] = \"remember to clean bedroom\"\n        notes[\"B2\"] = \"do homeworks\"\n        w.update_notes(notes)\n        self.assertEqual(w.get_note(\"A1\"), notes[\"A1\"])\n        self.assertEqual(w.get_note(\"B2\"), notes[\"B2\"])\n\n        # test clear_notes\n        w.clear_notes([\"A1\", \"B2\"])\n        self.assertEqual(w.get_note(\"A1\"), \"\")\n        self.assertEqual(w.get_note(\"B2\"), \"\")\n\n        with self.assertRaises(TypeError) as _:\n            w.insert_note(\"A1\", 42)\n            w.insert_note(\"A1\", [\"asddf\", \"asdfqwebn\"])\n            w.insert_note(\"A1\", w)\n\n    @pytest.mark.vcr()\n    def test_get_notes(self):\n        w = self.spreadsheet.worksheets()[0]\n        notes = {\n            \"A1\": \"read my note\",\n            \"B2\": \"Or don't\",\n            \"A3\": \"another note\",\n            \"C3\": \"test\",\n        }\n        expected_notes = [\n            [notes[\"A1\"]],\n            [\"\", notes[\"B2\"]],\n            [\"another note\", \"\", \"test\"],\n        ]\n\n        expected_range_notes = [\n            [\"\", \"Or don't\"],\n            [\"another note\", \"\", \"test\"],\n        ]\n\n        empty_notes = w.get_notes()\n\n        w.insert_notes(notes)\n        range_notes = w.get_notes(grid_range=\"A2:C3\")\n\n        all_notes = w.get_notes()\n\n        self.assertEqual(empty_notes, [[]])\n        self.assertEqual(all_notes, expected_notes)\n        self.assertEqual(range_notes, expected_range_notes)\n\n    @pytest.mark.vcr()\n    def test_get_notes_2nd_sheet(self):\n        w2 = self.spreadsheet.add_worksheet(\"worksheet 2\", 3, 3)\n\n        notes = {\n            \"A1\": \"the first time\",\n            \"B3\": \"two sheets\",\n        }\n\n        expected_notes = [\n            [\"the first time\"],\n            [],\n            [\"\", \"two sheets\"],\n        ]\n        expected_range_notes = [\n            [],\n            [\"\", \"two sheets\"],\n        ]\n\n        empty_notes = w2.get_notes()\n\n        w2.insert_notes(notes)\n\n        all_notes = w2.get_notes()\n        range_notes = w2.get_notes(grid_range=\"A2:C3\")\n\n        self.assertEqual(empty_notes, [[]])\n        self.assertEqual(all_notes, expected_notes)\n        self.assertEqual(range_notes, expected_range_notes)\n\n    @pytest.mark.vcr()\n    def test_batch_clear(self):\n        w = self.spreadsheet.sheet1\n\n        # make sure cells are empty\n        self.assertListEqual(w.get_values(\"A1:B1\"), [[]])\n        self.assertListEqual(w.get_values(\"C2:E2\"), [[]])\n\n        # fill the cells\n        w.update([[\"12345\", \"ThisIsText\"]], \"A1:B1\")\n        w.update([[\"5678\", \"Second\", \"Text\"]], \"C2:E2\")\n\n        # confirm the cells are not empty\n        self.assertNotEqual(w.get_values(\"A1:B1\"), [[]])\n        self.assertNotEqual(w.get_values(\"C2:E2\"), [[]])\n\n        # empty both cell range at once\n        w.batch_clear([\"A1:B1\", \"C2:E2\"])\n\n        # confirm cells are empty\n        # make sure cells are empty\n        self.assertListEqual(w.get_values(\"A1:B1\"), [[]])\n        self.assertListEqual(w.get_values(\"C2:E2\"), [[]])\n\n    @pytest.mark.vcr()\n    def test_group_columns(self):\n        w = self.sheet\n        w.add_dimension_group_columns(0, 2)\n\n        col_groups = self.sheet.list_dimension_group_columns()\n\n        range = col_groups[0][\"range\"]\n        self.assertEqual(range[\"dimension\"], utils.Dimension.cols)\n        self.assertEqual(range[\"startIndex\"], 0)\n        self.assertEqual(range[\"endIndex\"], 2)\n\n        self.sheet.delete_dimension_group_columns(0, 2)\n\n        col_groups = self.sheet.list_dimension_group_columns()\n        self.assertEqual(col_groups, [])\n\n    @pytest.mark.vcr()\n    def test_group_rows(self):\n        w = self.sheet\n        w.add_dimension_group_rows(0, 2)\n\n        row_groups = self.sheet.list_dimension_group_rows()\n\n        range = row_groups[0][\"range\"]\n        self.assertEqual(range[\"dimension\"], utils.Dimension.rows)\n        self.assertEqual(range[\"startIndex\"], 0)\n        self.assertEqual(range[\"endIndex\"], 2)\n\n        self.sheet.delete_dimension_group_rows(0, 2)\n\n        row_groups = self.sheet.list_dimension_group_rows()\n        self.assertEqual(row_groups, [])\n\n    @pytest.mark.vcr()\n    def test_hide_columns_rows(self):\n        w = self.sheet\n\n        # This is hard to verify\n        # simply make the HTTP request to make sure it does not fail\n        w.hide_columns(0, 2)\n        w.unhide_columns(0, 2)\n\n        w.hide_rows(0, 2)\n        w.unhide_rows(0, 2)\n\n    @pytest.mark.vcr()\n    def test_hide_show_worksheet(self):\n        \"\"\"We can't retrieve this property from the API\n        see issue: https://issuetracker.google.com/issues/229298342\n\n        We can only send the request and make sure it works.\n        This is a trivial method, using recorded cassettes it will never fail.\n        But next time we refresh the cassette it will make the real request.\"\"\"\n\n        # you cannot hide all worksheet in a document\n        with pytest.raises(APIError):\n            self.sheet.hide()\n\n        new_sheet = self.spreadsheet.add_worksheet(\"you cannot see me\", 2, 2)\n\n        # as describe in https://issuetracker.google.com/issues/229298342\n        # the response does not include some default values.\n        # if missing => value is False\n        res = self.spreadsheet.fetch_sheet_metadata()\n        hidden_before = res[\"sheets\"][1][\"properties\"].get(\"hidden\", False)\n        hidden_before_prop = new_sheet.isSheetHidden\n\n        self.assertFalse(hidden_before)\n        self.assertFalse(hidden_before_prop)\n\n        new_sheet.hide()\n\n        res = self.spreadsheet.fetch_sheet_metadata()\n        hidden_after = res[\"sheets\"][1][\"properties\"].get(\"hidden\", False)\n        hidden_after_prop = new_sheet.isSheetHidden\n        self.assertTrue(hidden_after)\n        self.assertTrue(hidden_after_prop)\n\n        new_sheet.show()\n\n        res = self.spreadsheet.fetch_sheet_metadata()\n        hidden_before = res[\"sheets\"][1][\"properties\"].get(\"hidden\", False)\n        hidden_before_prop = new_sheet.isSheetHidden\n        self.assertFalse(hidden_before)\n        self.assertFalse(hidden_before_prop)\n\n    @pytest.mark.vcr()\n    def test_hide_gridlines(self):\n        \"\"\"Hide gridlines. Check API to see if they are hidden.\"\"\"\n\n        def are_gridlines_hidden():\n            res = self.spreadsheet.fetch_sheet_metadata()\n            sheets = res[\"sheets\"]\n            sheet = utils.finditem(\n                lambda x: x[\"properties\"][\"sheetId\"] == self.sheet.id,\n                sheets,\n            )\n            return (\n                sheet[\"properties\"]\n                .get(\"gridProperties\", {})\n                .get(\"hideGridlines\", False)\n            )\n\n        hidden_before = are_gridlines_hidden()\n        hidden_before_property = self.sheet.is_gridlines_hidden\n\n        self.sheet.hide_gridlines()\n\n        hidden_after = are_gridlines_hidden()\n        hidden_after_property = self.sheet.is_gridlines_hidden\n\n        self.assertFalse(hidden_before)\n        self.assertFalse(hidden_before_property)\n        self.assertTrue(hidden_after)\n        self.assertTrue(hidden_after_property)\n\n    @pytest.mark.vcr()\n    def test_show_gridlines(self):\n        \"\"\"Show gridlines. Check API to see if they are shown.\"\"\"\n\n        def are_gridlines_hidden():\n            res = self.spreadsheet.fetch_sheet_metadata()\n            sheets = res[\"sheets\"]\n            sheet = utils.finditem(\n                lambda x: x[\"properties\"][\"sheetId\"] == self.sheet.id,\n                sheets,\n            )\n            return (\n                sheet[\"properties\"]\n                .get(\"gridProperties\", {})\n                .get(\"hideGridlines\", False)\n            )\n\n        hidden_before = are_gridlines_hidden()\n        hidden_before_property = self.sheet.is_gridlines_hidden\n\n        self.sheet.hide_gridlines()\n        self.sheet.show_gridlines()\n\n        hidden_after = are_gridlines_hidden()\n        hidden_after_property = self.sheet.is_gridlines_hidden\n\n        self.assertFalse(hidden_before)\n        self.assertFalse(hidden_before_property)\n        self.assertFalse(hidden_after)\n        self.assertFalse(hidden_after_property)\n\n    @pytest.mark.vcr()\n    def test_auto_resize_columns(self):\n        w = self.sheet\n\n        # we can only check the result of `auto_resize_columns`\n        # using only code and the API.\n        # To test `auto_resize_row` we must use a web browser and\n        # force the size of a row then auto resize it using gspread.\n\n        # insert enough text to make it larger than the column\n        w.update_acell(\"A1\", \"A\" * 1024)\n\n        # request only what we are looking for\n        params = {\"fields\": \"sheets.data.columnMetadata\"}\n        res = self.spreadsheet.fetch_sheet_metadata(params=params)\n        size_before = res[\"sheets\"][0][\"data\"][0][\"columnMetadata\"][0][\"pixelSize\"]\n\n        # auto resize the first column\n        w.columns_auto_resize(0, 1)\n\n        res = self.spreadsheet.fetch_sheet_metadata(params=params)\n        size_after = res[\"sheets\"][0][\"data\"][0][\"columnMetadata\"][0][\"pixelSize\"]\n\n        self.assertGreater(size_after, size_before)\n\n    @pytest.mark.vcr()\n    def test_copy_cut_range(self):\n        w = self.sheet\n\n        # init the sheet values\n        values = [[\"A1\"], [\"A2\"]]\n        w.update(values, \"A1:A2\")\n\n        # copy the values\n        w.copy_range(\"A1:A2\", \"B1:B2\")\n\n        # check the copied values\n        cells = w.range(\"B1:B2\")\n        self.assertListEqual(\n            list(itertools.chain(*values)), [cell.value for cell in cells]\n        )\n\n        # cut the original values in A1:A2\n        w.cut_range(\"A1:A2\", \"C1\")\n\n        # check the values have moved\n        cells = w.range(\"A1:A2\")\n        self.assertListEqual([cell.value for cell in cells], [\"\", \"\"])\n\n        cells = w.range(\"C1:C2\")\n        self.assertListEqual(\n            list(itertools.chain(*values)),\n            [cell.value for cell in cells],\n        )\n\n    @pytest.mark.vcr()\n    def test_get_and_get_values_have_same_signature(self):\n        \"\"\"get_values and get should have the same signature apart from\n        return_type and pad_values\n        get_all_values should be the same as get_values\n        \"\"\"\n        sig_get = signature(self.sheet.get)\n        sig_get_values = signature(self.sheet.get_values)\n        sig_get_all_values = signature(self.sheet.get_all_values)\n\n        # for get and get_values, all params should be equal apart from\n        #  return_type and pad_values\n        params_get = sig_get.parameters\n        params_get_values = sig_get_values.parameters\n\n        self.assertEqual(\n            {\n                key: params_get[key]\n                for key in params_get\n                if key not in [\"return_type\", \"pad_values\"]\n            },\n            {\n                key: params_get_values[key]\n                for key in params_get_values\n                if key not in [\"return_type\", \"pad_values\"]\n            },\n        )\n        self.assertNotEqual(params_get[\"return_type\"], params_get_values[\"return_type\"])\n        self.assertNotEqual(params_get[\"pad_values\"], params_get_values[\"pad_values\"])\n\n        # get_all_values should be a carbon copy of get_values\n        self.assertEqual(sig_get_values, sig_get_all_values)\n\n    @pytest.mark.vcr()\n    def test_add_validation(self):\n        sheet = self.sheet\n        self.assertDictEqual(\n            sheet.add_validation(\n                \"A1\",\n                utils.ValidationConditionType.one_of_list,\n                [\"y\", \"n\"],\n                strict=True,\n            ),\n            {\"spreadsheetId\": self.spreadsheet.id, \"replies\": [{}]},\n        )\n\n        with self.assertRaises(APIError) as ex:\n            sheet.update(values=\"X\", range_name=\"A1\")\n\n        # Ensure that the exception is able to be pickled and unpickled\n        # Further ensure we are able to access the exception's properties after pickling\n        reloaded_exception = pickle.loads(pickle.dumps(ex.exception))  # nosec\n        self.assertEqual(reloaded_exception.args[0][\"status\"], \"INVALID_ARGUMENT\")\n"
  },
  {
    "path": "tox.ini",
    "content": "[tox]\nenvlist = py38,py39,py310,py311,py312\nskip_missing_interpreters = true\n\n# Used to run tests, **do not** set GS_CREDS_FILENAME to run off-line tests\n[testenv]\ndescription = Run project test suite\npassenv =\n        GS_RECORD_MODE\n        GS_CREDS_FILENAME\n        APPDATA\ndeps = -r test-requirements.txt\ncommands = pytest {posargs} tests/\n\n[flake8]\nextend-ignore = E203\nextend-exclude = .tox,./env,./gspread/__init__.py\nmax-line-length = 255\nmax-complexity = 10\nshow-source = True\nstatistics = True\n\n[isort]\nextend_skip=.tox,./env,./gspread/__init__.py\nprofile=black\n\n# Used by the CI to check code format/security\n[testenv:lint]\ndescription = Run code linters\ndeps = -r lint-requirements.txt\ncommands = black --check --diff --extend-exclude=\"./env|gspread/__init__.py\" .\n        codespell --skip=\".tox,.git,./docs/build,.mypy_cache,./env\" .\n        flake8 .\n        isort --check-only .\n        mypy --install-types --non-interactive --ignore-missing-imports ./gspread ./tests\n\n# Used by developers to format code, best advised to be run before commit\n[testenv:format]\ndescription = Format code\ndeps = -r lint-requirements.txt\ncommands = black --extend-exclude=\"./env|gspread/__init__.py\" .\n        isort .\n\n\n[testenv:build]\ndescription = Build project package\ndeps = build\ncommands = python -m build\n\n[testenv:doc]\ndescription = Build the documentation\ndeps = -r docs/requirements.txt\ncommands = sphinx-build -W ./docs ./docs/build\n"
  }
]